Index: components/arc/common/watchdog.mojom |
diff --git a/components/arc/common/screen_rect.mojom b/components/arc/common/watchdog.mojom |
similarity index 50% |
copy from components/arc/common/screen_rect.mojom |
copy to components/arc/common/watchdog.mojom |
index baafbcdd70ed395407f20a74f0081f7686a2aa4e..c259147875026cd77884d48bcd0e9febb38d8908 100644 |
--- a/components/arc/common/screen_rect.mojom |
+++ b/components/arc/common/watchdog.mojom |
@@ -4,10 +4,12 @@ |
module arc.mojom; |
-// Represents a rectangle to specify screen coordinates. |
-struct ScreenRect { |
- int32 left; |
- int32 top; |
- int32 right; |
- int32 bottom; |
+interface WatchdogHost { |
+ // Removes ARC data. |
+ ClearArcData(); |
+}; |
+ |
+interface WatchdogInstance { |
+ // Establishes full-duplex communication with the host. |
+ Init(WatchdogHost host_ptr); |
}; |