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

Unified Diff: ppapi/proxy/connection.h

Issue 10815073: Refactoring of new IPC-only pepper implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/ppapi_proxy.gypi ('k') | ppapi/proxy/dispatch_reply_message.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/connection.h
diff --git a/ppapi/proxy/connection.h b/ppapi/proxy/connection.h
new file mode 100644
index 0000000000000000000000000000000000000000..5f99f06378ad9443c1439f8ce6b335971bc76624
--- /dev/null
+++ b/ppapi/proxy/connection.h
@@ -0,0 +1,34 @@
+// 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_PROXY_CONNECTION_H_
+#define PPAPI_PROXY_CONNECTION_H_
+
+namespace IPC {
+class Sender;
+}
+
+namespace ppapi {
+namespace proxy {
+
+// This struct holds the channels that a resource uses to send message to the
+// browser and renderer.
+struct Connection {
+ Connection() : browser_sender(0), renderer_sender(0) {
+ }
+ Connection(IPC::Sender* browser, IPC::Sender* renderer)
+ : browser_sender(browser),
+ renderer_sender(renderer) {
+ }
+
+ IPC::Sender* browser_sender;
+ IPC::Sender* renderer_sender;
+};
+
+} // namespace proxy
+} // namespace ppapi
+
+
+#endif // PPAPI_PROXY_CONNECTION_H_
+
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/dispatch_reply_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698