| Index: chrome/browser/chromeos/login/chrome_restart_request.cc
|
| diff --git a/chrome/browser/chromeos/login/chrome_restart_request.cc b/chrome/browser/chromeos/login/chrome_restart_request.cc
|
| index 2475f77548193c8e604739acc5b18038efd9ad5c..4bad03caecfffb380075bbacdc5efa36448d7d9c 100644
|
| --- a/chrome/browser/chromeos/login/chrome_restart_request.cc
|
| +++ b/chrome/browser/chromeos/login/chrome_restart_request.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include <vector>
|
|
|
| -#include "ash/ash_switches.h"
|
| #include "base/command_line.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/message_loop/message_loop.h"
|
| @@ -47,6 +46,10 @@
|
| #include "ui/wm/core/wm_core_switches.h"
|
| #include "url/gurl.h"
|
|
|
| +#if !defined(USE_ATHENA)
|
| +#include "ash/ash_switches.h"
|
| +#endif
|
| +
|
| using content::BrowserThread;
|
|
|
| namespace chromeos {
|
| @@ -162,6 +165,7 @@ std::string DeriveCommandLine(const GURL& start_url,
|
| #endif
|
| app_list::switches::kDisableSyncAppList,
|
| app_list::switches::kEnableSyncAppList,
|
| +#if !defined(USE_ATHENA)
|
| ash::switches::kAshDefaultWallpaperLarge,
|
| ash::switches::kAshDefaultWallpaperSmall,
|
| ash::switches::kAshGuestWallpaperLarge,
|
| @@ -169,6 +173,7 @@ std::string DeriveCommandLine(const GURL& start_url,
|
| ash::switches::kAshHostWindowBounds,
|
| ash::switches::kAshTouchHud,
|
| ash::switches::kAuraLegacyPowerButton,
|
| +#endif
|
| // Please keep these in alphabetical order. Non-UI Compositor switches
|
| // here should also be added to
|
| // content/browser/renderer_host/render_process_host_impl.cc.
|
|
|