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

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

Issue 2345153002: cheets: add wallpaper observer to arc_wallpaper_service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: delete wallpaper observer in OnInstanceClosed() and ~ArcWallpaperService Created 4 years, 3 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
Index: components/arc/common/wallpaper.mojom
diff --git a/components/arc/common/wallpaper.mojom b/components/arc/common/wallpaper.mojom
index db66f14270910a57f843412667c9dac685a82769..6f400742a4be283ca878feaeb295076cc75ee723 100644
--- a/components/arc/common/wallpaper.mojom
+++ b/components/arc/common/wallpaper.mojom
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
-// Next MinVersion: 1
+// Next MinVersion: 2
module arc.mojom;
@@ -18,8 +18,11 @@ interface WallpaperHost {
};
// Connects with container side to publish wallpaper related intents.
-// Next method ID:1
+// Next method ID:2
interface WallpaperInstance {
// Establishes communication with the container side.
Init@0(WallpaperHost host_ptr);
+
+ // Notifies ArcWallpaperManagerService that wallpaper is changed.
+ [MinVersion=1] OnWallpaperChanged@1();
};

Powered by Google App Engine
This is Rietveld 408576698