Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Unified Diff: ppapi/host/host_factory.h

Issue 10572040: Create a PPAPI host for new resource message routing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ppapi/host/host_message_context.h » ('j') | ppapi/host/ppapi_host.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/host/host_factory.h
diff --git a/ppapi/host/host_factory.h b/ppapi/host/host_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..88ee93885c66db71921a7abe7368e5c3e4b8f39c
--- /dev/null
+++ b/ppapi/host/host_factory.h
@@ -0,0 +1,44 @@
+// 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 PPAPI_HOST_HOST_FACTORY_H_
+#define PPAPI_HOST_HOST_FACTORY_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "ppapi/c/pp_instance.h"
+
+namespace IPC {
+class Message;
+}
+
+namespace ppapi {
+
+namespace proxy {
+class ResourceMessageCallParams;
+}
+
+namespace host {
+
+class PpapiHost;
+class ResourceHost;
+
+// A host factory creates ResourceHosts for incoming create messages from
+// the plugin. This allows us to implement the hosts at the chrome/content
+// layer without the ppapi layer knowing about the details.
+class HostFactory {
+ public:
+ virtual scoped_ptr<ResourceHost> CreateMessageReceived(
dmichael (off chromium) 2012/06/22 16:56:49 The name's slightly confusing, seeing as this is a
+ PpapiHost* host,
+ const proxy::ResourceMessageCallParams& params,
+ PP_Instance instance,
+ const IPC::Message& message) = 0;
+
+ protected:
+ virtual ~HostFactory() {}
dmichael (off chromium) 2012/06/22 16:56:49 Is it important that we disallow deleting via a ba
+};
+
+} // namespace host
+} // namespace ppapi
+
+#endif // PPAPI_HOST_HOST_FACTORY_H_
« no previous file with comments | « no previous file | ppapi/host/host_message_context.h » ('j') | ppapi/host/ppapi_host.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698