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); |
}; |