Implement inspect action for workers in Task Manager
[chromium-blink-merge.git] / ppapi / tests / test_broker.h
blob4cef9e541d61fb0fcc9cf595132cafa0eea886ec
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_
8 #include <string>
9 #include <vector>
11 #include "ppapi/tests/test_case.h"
13 struct PPB_BrokerTrusted;
15 class TestBroker : public TestCase {
16 public:
17 TestBroker(TestingInstance* instance);
19 // TestCase implementation.
20 virtual bool Init();
21 virtual void RunTest();
23 private:
24 std::string TestCreate();
26 const struct PPB_BrokerTrusted* broker_interface_;
29 #endif // PPAPI_TESTS_TEST_BROKER_H_