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

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

Issue 2165643004: arc: add enterprise_reporting.mojom interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added data removing. Created 4 years, 5 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
Luis Héctor Chávez 2016/07/21 16:19:54 Hmmm the name of this interface does not match wha
+ // Establishes full-duplex communication with the host.
+ Init(WatchdogHost host_ptr);
};
« no previous file with comments | « components/arc/common/arc_bridge.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698