| Index: chrome/browser/chromeos/background/ash_user_wallpaper_delegate.cc
|
| diff --git a/chrome/browser/chromeos/background/ash_user_wallpaper_delegate.cc b/chrome/browser/chromeos/background/ash_user_wallpaper_delegate.cc
|
| index 09f4b72bf9774e5919cd71bd86c71f9907455a3f..8e2cb65b2feba133200b15de35f465dbf1b40e91 100644
|
| --- a/chrome/browser/chromeos/background/ash_user_wallpaper_delegate.cc
|
| +++ b/chrome/browser/chromeos/background/ash_user_wallpaper_delegate.cc
|
| @@ -18,7 +18,6 @@
|
| #include "chrome/browser/ui/browser_finder.h"
|
| #include "chrome/browser/ui/chrome_pages.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| -#include "chrome/common/chrome_switches.h"
|
| #include "chromeos/chromeos_switches.h"
|
| #include "chromeos/login/login_state.h"
|
| #include "content/public/browser/notification_service.h"
|
| @@ -62,9 +61,9 @@ class UserWallpaperDelegate : public ash::UserWallpaperDelegate {
|
| bool is_registered = StartupUtils::IsDeviceRegistered();
|
| const CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| bool disable_boot_animation = command_line->
|
| - HasSwitch(::switches::kDisableBootAnimation);
|
| + HasSwitch(switches::kDisableBootAnimation);
|
| bool disable_oobe_animation = command_line->
|
| - HasSwitch(::switches::kDisableOobeAnimation);
|
| + HasSwitch(switches::kDisableOobeAnimation);
|
| if ((!is_registered && disable_oobe_animation) ||
|
| (is_registered && disable_boot_animation))
|
| return false;
|
|
|