Chromium Code Reviews| Index: chrome/browser/renderer_host/pepper/pepper_broker_host.h |
| diff --git a/chrome/browser/renderer_host/pepper/pepper_broker_host.h b/chrome/browser/renderer_host/pepper/pepper_broker_host.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..95f12f96cec2e06fb53eaf752e41e92fc5de4a94 |
| --- /dev/null |
| +++ b/chrome/browser/renderer_host/pepper/pepper_broker_host.h |
| @@ -0,0 +1,30 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_ |
| +#define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_ |
| + |
| +#include "ppapi/host/resource_host.h" |
| +#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.
|
| + |
| +namespace content { |
| +class BrowserPpapiHost; |
| +} |
| + |
| +namespace chrome { |
| + |
| +class PepperBrokerHost : public ppapi::host::ResourceHost { |
| + public: |
| + PepperBrokerHost(content::BrowserPpapiHost* host, |
| + PP_Instance instance, |
| + PP_Resource resource); |
| + virtual ~PepperBrokerHost(); |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(PepperBrokerHost); |
| +}; |
| + |
| +} // namespace chrome |
| + |
| +#endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_ |