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

Unified Diff: ppapi/host/host_message_context.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_factory.h ('k') | ppapi/host/ppapi_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/host/host_message_context.h
diff --git a/ppapi/host/host_message_context.h b/ppapi/host/host_message_context.h
new file mode 100644
index 0000000000000000000000000000000000000000..6e0b70ae5a5ed0a9e9238671f74358eec6dd2a6c
--- /dev/null
+++ b/ppapi/host/host_message_context.h
@@ -0,0 +1,35 @@
+// 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_COMMON_HOST_MESSAGE_CONTEXT_H_
+#define PPAPI_COMMON_HOST_MESSAGE_CONTEXT_H_
+
+#include "ipc/ipc_message.h"
+#include "ppapi/host/ppapi_host_export.h"
+#include "ppapi/proxy/resource_message_params.h"
+
+namespace ppapi {
+namespace host {
+
+// This context structure provides information about incoming resource message
+// call requests when passed to resources.
+struct PPAPI_HOST_EXPORT HostMessageContext {
+ explicit HostMessageContext(const ppapi::proxy::ResourceMessageCallParams& cp)
+ : params(cp) {
+ }
+
+ // The original call parameters passed to the resource message call.
+ const ppapi::proxy::ResourceMessageCallParams& params;
+
+ // The reply message. If the params has the callback flag set, this message
+ // will be sent in reply. It is initialized to the empty message. If the
+ // handler wants to send something else, it should just assign the message
+ // it wants to this value.
+ IPC::Message reply_msg;
+};
+
+} // namespace host
+} // namespace ppapi
+
+#endif // PPAPI_COMMON_HOST_MESSAGE_CONTEXT_H_
« no previous file with comments | « ppapi/host/host_factory.h ('k') | ppapi/host/ppapi_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698