| 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 | |
| 10 namespace content { | |
| 11 class BrowserPpapiHost; | |
| 12 } | |
| 13 | |
| 14 namespace chrome { | |
| 15 | |
| 16 class PepperBrokerHost : public ppapi::host::ResourceHost { | |
| 17 public: | |
| 18 PepperBrokerHost(content::BrowserPpapiHost* host, | |
| 19 PP_Instance instance, | |
| 20 PP_Resource resource); | |
| 21 virtual ~PepperBrokerHost(); | |
| 22 | |
| 23 private: | |
| 24 DISALLOW_COPY_AND_ASSIGN(PepperBrokerHost); | |
| 25 }; | |
| 26 | |
| 27 } // namespace chrome | |
| 28 | |
| 29 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_ | |
| OLD | NEW |