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

Unified Diff: components/arc/set_wallpaper_delegate.h

Issue 2320323002: Revert of cheets: implement cros side of WallpaperManagerService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « components/arc/intent_helper/arc_intent_helper_bridge.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/set_wallpaper_delegate.h
diff --git a/components/arc/set_wallpaper_delegate.h b/components/arc/set_wallpaper_delegate.h
index 9494f5b89987ae988ad7b0050061aeebf6b73b57..28e5ed038c5248a219b2b3f78e1294c8d4a7cd5a 100644
--- a/components/arc/set_wallpaper_delegate.h
+++ b/components/arc/set_wallpaper_delegate.h
@@ -12,22 +12,12 @@
namespace arc {
// Delegate to allow setting the wallpaper.
-// TODO(muyuanli): This class will be removed once ArcIntentHelper migrates to
-// WallpaperManager API.
class SetWallpaperDelegate {
public:
virtual ~SetWallpaperDelegate() = default;
- static SetWallpaperDelegate* instance() { return instance_; }
- static void set_instance(SetWallpaperDelegate* delegate) {
- instance_ = delegate;
- }
-
// Sets an image represented in JPEG format as the wallpaper.
- virtual void SetWallpaperJpeg(const std::vector<uint8_t>& jpeg_data) = 0;
-
- private:
- static SetWallpaperDelegate* instance_;
+ virtual void SetWallpaper(std::vector<uint8_t> jpeg_data) = 0;
};
} // namespace arc
« no previous file with comments | « components/arc/intent_helper/arc_intent_helper_bridge.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698