Rollback V8 to version 3.26.31 (based on bleeding_edge revision r21147).
[chromium-blink-merge.git] / ppapi / host / host_factory.h
blobd4b8ea76cd8a48b8e71e9b9f74020bfac4696c1b
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 PPAPI_HOST_HOST_FACTORY_H_
6 #define PPAPI_HOST_HOST_FACTORY_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "ppapi/c/pp_instance.h"
11 namespace IPC {
12 class Message;
15 namespace ppapi {
17 namespace proxy {
18 class ResourceMessageCallParams;
21 namespace host {
23 class PpapiHost;
24 class ResourceHost;
26 // A host factory creates ResourceHosts for incoming create messages from
27 // the plugin. This allows us to implement the hosts at the chrome/content
28 // layer without the ppapi layer knowing about the details.
29 class HostFactory {
30 public:
31 virtual ~HostFactory() {}
33 virtual scoped_ptr<ResourceHost> CreateResourceHost(
34 PpapiHost* host,
35 const proxy::ResourceMessageCallParams& params,
36 PP_Instance instance,
37 const IPC::Message& message) = 0;
40 } // namespace host
41 } // namespace ppapi
43 #endif // PPAPI_HOST_HOST_FACTORY_H_