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

Unified Diff: cc/proto/compositor_message.proto

Issue 1442853005: Add IPC messages to transfer compositor protos (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Trying to remove CC_EXPORT... Created 5 years, 1 month 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 | « cc/proto/BUILD.gn ('k') | cc/trees/remote_proto_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/proto/compositor_message.proto
diff --git a/cc/proto/compositor_message.proto b/cc/proto/compositor_message.proto
new file mode 100644
index 0000000000000000000000000000000000000000..98c781c703f29bda1298333a80b33d0220e52ef9
--- /dev/null
+++ b/cc/proto/compositor_message.proto
@@ -0,0 +1,25 @@
+// Copyright 2015 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.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package cc.proto;
+
+// A top level message for serialized state used by the compositor remote
+// channels.
+message CompositorMessage {
+ // One of these is set based on where the message is going to.
+ optional CompositorMessageToMain to_main = 1;
+ optional CompositorMessageToImpl to_impl = 2;
+}
+
+message CompositorMessageToMain {
+ // Placeholder for compositor message data meant for ChannelMain.
+}
+
+message CompositorMessageToImpl {
+ // Placeholder for compositor message data meant for ChannelImpl.
+}
« no previous file with comments | « cc/proto/BUILD.gn ('k') | cc/trees/remote_proto_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698