OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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. | |
4 | |
5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_ | |
6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_ | |
7 | |
8 #include "ppapi/host/resource_host.h" | |
9 #include "ppapi/proxy/resource_message_params.h" | |
yzshen1
2012/12/06 19:59:46
nit: you don't need it.
raymes
2012/12/07 21:32:19
Done.
| |
10 | |
11 namespace content { | |
12 class BrowserPpapiHost; | |
13 } | |
14 | |
15 namespace chrome { | |
16 | |
17 class PepperBrokerHost : public ppapi::host::ResourceHost { | |
18 public: | |
19 PepperBrokerHost(content::BrowserPpapiHost* host, | |
20 PP_Instance instance, | |
21 PP_Resource resource); | |
22 virtual ~PepperBrokerHost(); | |
23 | |
24 private: | |
25 DISALLOW_COPY_AND_ASSIGN(PepperBrokerHost); | |
26 }; | |
27 | |
28 } // namespace chrome | |
29 | |
30 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_ | |
OLD | NEW |