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

Unified Diff: components/arc/set_wallpaper_delegate.h

Issue 2264743002: cheets: implement cros side of WallpaperManagerService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cheets: implement cros side of WallpaperManagerService. Created 4 years, 4 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/set_wallpaper_delegate.h
diff --git a/components/arc/set_wallpaper_delegate.h b/components/arc/set_wallpaper_delegate.h
index 28e5ed038c5248a219b2b3f78e1294c8d4a7cd5a..931cd0d764d21a4b290794f5025201ce717c1407 100644
--- a/components/arc/set_wallpaper_delegate.h
+++ b/components/arc/set_wallpaper_delegate.h
@@ -6,9 +6,10 @@
#define COMPONENTS_ARC_SET_WALLPAPER_DELEGATE_H_
#include <stdint.h>
-
#include <vector>
+#include "base/callback_forward.h"
+
namespace arc {
// Delegate to allow setting the wallpaper.
@@ -17,7 +18,11 @@ class SetWallpaperDelegate {
virtual ~SetWallpaperDelegate() = default;
// Sets an image represented in JPEG format as the wallpaper.
- virtual void SetWallpaper(std::vector<uint8_t> jpeg_data) = 0;
+ virtual void SetWallpaper(const std::vector<uint8_t>& jpeg_data) = 0;
+ // Gets current wallpaper encoded in JPEG format.
+ virtual void GetWallpaper(
+ const base::Callback<void(const std::vector<uint8_t>& image)>& callback)
+ const = 0;
};
} // namespace arc

Powered by Google App Engine
This is Rietveld 408576698