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

Unified Diff: cc/ipc/copy_output_request.mojom

Issue 2655963006: Implemented StructTraits for cc::CopyOutputRequest (Closed)
Patch Set: c Created 3 years, 11 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 | « cc/ipc/BUILD.gn ('k') | cc/ipc/copy_output_request.typemap » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/ipc/copy_output_request.mojom
diff --git a/cc/ipc/copy_output_request.mojom b/cc/ipc/copy_output_request.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..c6ff8becf5694be7bc0c03d82d9aa1754712c99a
--- /dev/null
+++ b/cc/ipc/copy_output_request.mojom
@@ -0,0 +1,18 @@
+// Copyright 2017 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.
+
+module cc.mojom;
+
+import "cc/ipc/texture_mailbox.mojom";
+import "mojo/common/unguessable_token.mojom";
+import "ui/gfx/geometry/mojo/geometry.mojom";
+
+// See cc/output/copy_output_request.h.
+// Note: result_callback_ is not included in this struct.
+struct CopyOutputRequest {
+ mojo.common.mojom.UnguessableToken? source;
+ bool force_bitmap_result;
+ gfx.mojom.Rect? area;
+ cc.mojom.TextureMailbox? texture_mailbox;
+};
« no previous file with comments | « cc/ipc/BUILD.gn ('k') | cc/ipc/copy_output_request.typemap » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698