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

Unified Diff: ui/viewer/viewer_messages.h

Issue 10872002: beginnings of metro viewer process (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: . Created 8 years, 3 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 | « ui/viewer/viewer_message_generator.cc ('k') | ui/viewer/viewer_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/viewer/viewer_messages.h
diff --git a/ui/viewer/viewer_messages.h b/ui/viewer/viewer_messages.h
new file mode 100644
index 0000000000000000000000000000000000000000..a5923c1e3aa2ec63b5ce92b77209b96b83b55d9b
--- /dev/null
+++ b/ui/viewer/viewer_messages.h
@@ -0,0 +1,26 @@
+// 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.
+
+// Multiply-included message file, no traditional include guard.
+#include <string>
+
+#include "ipc/ipc_channel_handle.h"
+#include "ipc/ipc_message_macros.h"
+
+#define IPC_MESSAGE_START ViewerMsgStart
+
+//-----------------------------------------------------------------------------
+// Viewer process messages:
+// These are messages from the browser to the viewer process.
+
+// Shares the rendering handle to the viewer process.
+IPC_MESSAGE_CONTROL1(ViewerMsg_PbufferHandle,
+ std::string /* TODO(scottmg): whatever type */)
+
+//-----------------------------------------------------------------------------
+// Viewer process host messages:
+// These are messages from the viewer process to the browser.
+
+// Connect to the browser (request a pbuffer handle).
+IPC_MESSAGE_CONTROL0(ViewerHostMsg_Connect)
« no previous file with comments | « ui/viewer/viewer_message_generator.cc ('k') | ui/viewer/viewer_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698