| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/login/chrome_restart_request.h" | 5 #include "chrome/browser/chromeos/login/chrome_restart_request.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "ash/common/ash_switches.h" | 9 #include "ash/common/ash_switches.h" |
| 10 #include "base/base_switches.h" | 10 #include "base/base_switches.h" |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 ::switches::kOzoneInitialDisplayPhysicalSizeMm, | 175 ::switches::kOzoneInitialDisplayPhysicalSizeMm, |
| 176 ::switches::kOzonePlatform, | 176 ::switches::kOzonePlatform, |
| 177 #endif | 177 #endif |
| 178 app_list::switches::kDisableSyncAppList, | 178 app_list::switches::kDisableSyncAppList, |
| 179 app_list::switches::kEnableCenteredAppList, | 179 app_list::switches::kEnableCenteredAppList, |
| 180 app_list::switches::kEnableSyncAppList, | 180 app_list::switches::kEnableSyncAppList, |
| 181 ash::switches::kAshEnableTouchView, | 181 ash::switches::kAshEnableTouchView, |
| 182 ash::switches::kAshEnableUnifiedDesktop, | 182 ash::switches::kAshEnableUnifiedDesktop, |
| 183 ash::switches::kAshHostWindowBounds, | 183 ash::switches::kAshHostWindowBounds, |
| 184 ash::switches::kAshTouchHud, | 184 ash::switches::kAshTouchHud, |
| 185 ash::switches::kAshUseNewVKWindowBehavior, | |
| 186 ash::switches::kAuraLegacyPowerButton, | 185 ash::switches::kAuraLegacyPowerButton, |
| 187 chromeos::switches::kDefaultWallpaperLarge, | 186 chromeos::switches::kDefaultWallpaperLarge, |
| 188 chromeos::switches::kDefaultWallpaperSmall, | 187 chromeos::switches::kDefaultWallpaperSmall, |
| 189 chromeos::switches::kGuestWallpaperLarge, | 188 chromeos::switches::kGuestWallpaperLarge, |
| 190 chromeos::switches::kGuestWallpaperSmall, | 189 chromeos::switches::kGuestWallpaperSmall, |
| 191 // Please keep these in alphabetical order. Non-UI Compositor switches | 190 // Please keep these in alphabetical order. Non-UI Compositor switches |
| 192 // here should also be added to | 191 // here should also be added to |
| 193 // content/browser/renderer_host/render_process_host_impl.cc. | 192 // content/browser/renderer_host/render_process_host_impl.cc. |
| 194 cc::switches::kDisableBeginFrameScheduling, | 193 cc::switches::kDisableBeginFrameScheduling, |
| 195 cc::switches::kDisableCachedPictureRaster, | 194 cc::switches::kDisableCachedPictureRaster, |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 // Relaunch chrome without session manager on dev box. | 361 // Relaunch chrome without session manager on dev box. |
| 363 ReLaunch(command_line); | 362 ReLaunch(command_line); |
| 364 return; | 363 return; |
| 365 } | 364 } |
| 366 | 365 |
| 367 // ChromeRestartRequest deletes itself after request sent to session manager. | 366 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 368 (new ChromeRestartRequest(command_line.argv()))->Start(); | 367 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 369 } | 368 } |
| 370 | 369 |
| 371 } // namespace chromeos | 370 } // namespace chromeos |
| OLD | NEW |