ExtensionSyncService: listen for relevant changes instead of being explicitly called...
[chromium-blink-merge.git] / chrome / browser / renderer_host / pepper / chrome_browser_pepper_host_factory.h
blobb817953b54dcf7d5212cd0ed0864f35c17a8e5e4
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.
5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_CHROME_BROWSER_PEPPER_HOST_FACTORY_H_
6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_CHROME_BROWSER_PEPPER_HOST_FACTORY_H_
8 #include "base/compiler_specific.h"
9 #include "ppapi/host/host_factory.h"
11 namespace content {
12 class BrowserPpapiHost;
13 } // namespace content
15 namespace chrome {
17 class ChromeBrowserPepperHostFactory : public ppapi::host::HostFactory {
18 public:
19 // Non-owning pointer to the filter must outlive this class.
20 explicit ChromeBrowserPepperHostFactory(content::BrowserPpapiHost* host);
21 ~ChromeBrowserPepperHostFactory() override;
23 scoped_ptr<ppapi::host::ResourceHost> CreateResourceHost(
24 ppapi::host::PpapiHost* host,
25 PP_Resource resource,
26 PP_Instance instance,
27 const IPC::Message& message) override;
29 private:
30 // Non-owning pointer.
31 content::BrowserPpapiHost* host_;
33 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserPepperHostFactory);
36 } // namespace chrome
38 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_CHROME_BROWSER_PEPPER_HOST_FACTORY_H_