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

Unified Diff: ppapi/host/ppapi_host.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 | « ppapi/host/host_message_context.h ('k') | ppapi/host/ppapi_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/host/ppapi_host.h
diff --git a/ppapi/host/ppapi_host.h b/ppapi/host/ppapi_host.h
new file mode 100644
index 0000000000000000000000000000000000000000..5b7087b94b1cf2404517f9344b74c9eeb1d9b148
--- /dev/null
+++ b/ppapi/host/ppapi_host.h
@@ -0,0 +1,79 @@
+// 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_PPAPI_HOST_H_
+#define PPAPI_HOST_PPAPI_HOST_H_
+
+#include <map>
+
+#include "base/compiler_specific.h"
+#include "base/memory/linked_ptr.h"
+#include "ipc/ipc_listener.h"
+#include "ipc/ipc_sender.h"
+#include "ppapi/c/pp_instance.h"
+#include "ppapi/c/pp_resource.h"
+#include "ppapi/host/ppapi_host_export.h"
+
+namespace ppapi {
+
+namespace proxy {
+class ResourceMessageCallParams;
+class ResourceMessageReplyParams;
+}
+
+namespace host {
+
+class HostFactory;
+class ResourceHost;
+
+// The host provides routing and tracking for resource message calls that
+// come from the plugin to the host (browser or renderer), and the
+// corresponding replies.
+class PPAPI_HOST_EXPORT PpapiHost : public IPC::Sender, public IPC::Listener {
+ public:
+ // The sender is the channel to the plugin for outgoing messages. The factory
+ // will be used to receive resource creation messages from the plugin. Both
+ // pointers are owned by the caller and must outlive this class.
+ PpapiHost(IPC::Sender* sender,
+ HostFactory* host_factory);
+ virtual ~PpapiHost();
+
+ // Sender implementation. Forwards to the sender_.
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
+
+ // Listener implementation.
+ virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
+
+ // Sends the given reply message to the plugin.
+ void SendReply(const proxy::ResourceMessageReplyParams& params,
+ const IPC::Message& msg);
+
+ private:
+ // Message handlers.
+ void OnHostMsgResourceCall(const proxy::ResourceMessageCallParams& params,
+ const IPC::Message& nested_msg);
+ void OnHostMsgResourceCreated(const proxy::ResourceMessageCallParams& param,
+ PP_Instance instance,
+ const IPC::Message& nested_msg);
+ void OnHostMsgResourceDestroyed(PP_Resource resource);
+
+ // Returns null if the resource doesn't exist.
+ host::ResourceHost* GetResourceHost(PP_Resource resource);
+
+ // Non-owning pointer.
+ IPC::Sender* sender_;
+
+ // Non-owning pointer.
+ HostFactory* host_factory_;
+
+ typedef std::map<PP_Resource, linked_ptr<ResourceHost> > ResourceMap;
+ ResourceMap resources_;
+
+ DISALLOW_COPY_AND_ASSIGN(PpapiHost);
+};
+
+} // namespace host
+} // namespace ppapi
+
+#endif // PPAPI_HOST_PPAPIE_HOST_H_
« no previous file with comments | « ppapi/host/host_message_context.h ('k') | ppapi/host/ppapi_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698