1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef PPAPI_TESTS_TEST_BROKER_H_
6 #define PPAPI_TESTS_TEST_BROKER_H_
11 #include "ppapi/tests/test_case.h"
13 struct PPB_BrokerTrusted
;
15 class TestBroker
: public TestCase
{
17 TestBroker(TestingInstance
* instance
);
19 // TestCase implementation.
21 virtual void RunTest();
24 std::string
TestCreate();
26 const struct PPB_BrokerTrusted
* broker_interface_
;
29 #endif // PPAPI_TESTS_TEST_BROKER_H_