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

Unified Diff: components/arc/common/print.mojom

Issue 2115863002: Stub for ARC print Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Stub for ARC print Bridge Created 4 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 | « components/arc/common/arc_bridge.mojom ('k') | components/arc/print/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/common/print.mojom
diff --git a/components/arc/common/screen_rect.mojom b/components/arc/common/print.mojom
similarity index 54%
copy from components/arc/common/screen_rect.mojom
copy to components/arc/common/print.mojom
index baafbcdd70ed395407f20a74f0081f7686a2aa4e..f95a47f7f66e1f183bf7f0eac6fafbadcdd71195 100644
--- a/components/arc/common/screen_rect.mojom
+++ b/components/arc/common/print.mojom
@@ -4,10 +4,11 @@
module arc.mojom;
-// Represents a rectangle to specify screen coordinates.
-struct ScreenRect {
- int32 left;
- int32 top;
- int32 right;
- int32 bottom;
+interface PrintHost {
Luis Héctor Chávez 2016/07/01 16:02:07 // Next method ID: 1
Sergey Poromov 2016/07/11 14:42:07 Done.
+ Print(handle file);
Luis Héctor Chávez 2016/07/01 16:02:07 This and Init need explicit ordinals. Print@0 and
Sergey Poromov 2016/07/11 14:42:07 Done.
+};
+
+interface PrintInstance {
Luis Héctor Chávez 2016/07/01 16:02:07 // Next method ID: 1
Sergey Poromov 2016/07/11 14:42:07 Done.
+ // Establishes full-duplex communication with the host.
+ Init(PrintHost host_ptr);
};
« no previous file with comments | « components/arc/common/arc_bridge.mojom ('k') | components/arc/print/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698