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

Unified Diff: ash/shell_delegate.h

Issue 208273005: If customization includes default wallpaper, download and apply it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Start customization manifest fetch on EULA accepted. Never re-fetch wallpaper. Created 6 years, 9 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: ash/shell_delegate.h
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h
index ba28e0ca26cf941c3737507dac9193f368272067..ae08f4ddac1a6061edcdc1644662e15acaf58fc8 100644
--- a/ash/shell_delegate.h
+++ b/ash/shell_delegate.h
@@ -133,6 +133,17 @@ class ASH_EXPORT ShellDelegate {
// Get the product name.
virtual base::string16 GetProductName() const = 0;
+
+ // If device should use customized default wallpaper.
+ virtual bool ShouldUseCustomizedDefaultWallpaper() const = 0;
+
+ // Returns small scale customized wallpaper file name.
+ virtual base::FilePath GetCustomizedWallpaperDefaultRescaledSmallFileName()
+ const = 0;
+
+ // Returns large scale customized wallpaper file name.
+ virtual base::FilePath GetCustomizedWallpaperDefaultRescaledLargeFileName()
+ const = 0;
};
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698