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

Unified Diff: ash/sysui/user_wallpaper_delegate_mus.cc

Issue 2235493002: mash: Disable ash_sysui; begin removal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Connect to chrome on mash session launch; add missing gn dep. 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
« no previous file with comments | « ash/sysui/user_wallpaper_delegate_mus.h ('k') | chrome/app/mash/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/sysui/user_wallpaper_delegate_mus.cc
diff --git a/ash/sysui/user_wallpaper_delegate_mus.cc b/ash/sysui/user_wallpaper_delegate_mus.cc
index eaeec816847b52018cff7edc81dec8910cfa9c81..801e5ea480ff957aa9aed0898676b2f534b6b53a 100644
--- a/ash/sysui/user_wallpaper_delegate_mus.cc
+++ b/ash/sysui/user_wallpaper_delegate_mus.cc
@@ -14,15 +14,15 @@
namespace {
wallpaper::WallpaperLayout WallpaperLayoutFromMojo(
- ash::sysui::mojom::WallpaperLayout layout) {
+ ash::mojom::WallpaperLayout layout) {
switch (layout) {
- case ash::sysui::mojom::WallpaperLayout::CENTER:
+ case ash::mojom::WallpaperLayout::CENTER:
return wallpaper::WALLPAPER_LAYOUT_CENTER;
- case ash::sysui::mojom::WallpaperLayout::CENTER_CROPPED:
+ case ash::mojom::WallpaperLayout::CENTER_CROPPED:
return wallpaper::WALLPAPER_LAYOUT_CENTER_CROPPED;
- case ash::sysui::mojom::WallpaperLayout::STRETCH:
+ case ash::mojom::WallpaperLayout::STRETCH:
return wallpaper::WALLPAPER_LAYOUT_STRETCH;
- case ash::sysui::mojom::WallpaperLayout::TILE:
+ case ash::mojom::WallpaperLayout::TILE:
return wallpaper::WALLPAPER_LAYOUT_TILE;
}
NOTREACHED();
« no previous file with comments | « ash/sysui/user_wallpaper_delegate_mus.h ('k') | chrome/app/mash/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698