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

Unified Diff: ash/shell/shell_delegate_impl.cc

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/shell_delegate_impl.cc
diff --git a/ash/shell/shell_delegate_impl.cc b/ash/shell/shell_delegate_impl.cc
index d21f7acb7f3a89552de1365518fa65624173f9f7..a74a74f6ef78cf2d785414dec2a3e7770f30f00e 100644
--- a/ash/shell/shell_delegate_impl.cc
+++ b/ash/shell/shell_delegate_impl.cc
@@ -170,5 +170,19 @@ base::string16 ShellDelegateImpl::GetProductName() const {
return base::string16();
}
+bool ShellDelegateImpl::ShouldUseCustomizedDefaultWallpaper() const {
+ return false;
+}
+
+base::FilePath
+ShellDelegateImpl::GetCustomizedWallpaperDefaultRescaledSmallFileName() const {
+ return base::FilePath();
+}
+
+base::FilePath
+ShellDelegateImpl::GetCustomizedWallpaperDefaultRescaledLargeFileName() const {
+ return base::FilePath();
+}
+
} // namespace shell
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698