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

Side by Side Diff: chrome/browser/chromeos/login/chrome_restart_request.cc

Issue 2297393002: cros/ash: Only show the stylus palette on the internal display. (Closed)
Patch Set: Address comments Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « ash/common/system/status_area_widget.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 #if defined(USE_OZONE) 173 #if defined(USE_OZONE)
174 ::switches::kOzoneInitialDisplayBounds, 174 ::switches::kOzoneInitialDisplayBounds,
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::kAshEnablePalette, 182 ash::switches::kAshEnablePalette,
183 ash::switches::kAshEnableExperimentalPaletteFeatures, 183 ash::switches::kAshEnablePaletteExperimentalFeatures,
184 ash::switches::kAshEnablePaletteOnAllDisplays,
184 ash::switches::kAshEnableUnifiedDesktop, 185 ash::switches::kAshEnableUnifiedDesktop,
185 ash::switches::kAshHostWindowBounds, 186 ash::switches::kAshHostWindowBounds,
186 ash::switches::kAshTouchHud, 187 ash::switches::kAshTouchHud,
187 ash::switches::kAuraLegacyPowerButton, 188 ash::switches::kAuraLegacyPowerButton,
188 chromeos::switches::kDefaultWallpaperLarge, 189 chromeos::switches::kDefaultWallpaperLarge,
189 chromeos::switches::kDefaultWallpaperSmall, 190 chromeos::switches::kDefaultWallpaperSmall,
190 chromeos::switches::kGuestWallpaperLarge, 191 chromeos::switches::kGuestWallpaperLarge,
191 chromeos::switches::kGuestWallpaperSmall, 192 chromeos::switches::kGuestWallpaperSmall,
192 // Please keep these in alphabetical order. Non-UI Compositor switches 193 // Please keep these in alphabetical order. Non-UI Compositor switches
193 // here should also be added to 194 // here should also be added to
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 // Relaunch chrome without session manager on dev box. 364 // Relaunch chrome without session manager on dev box.
364 ReLaunch(command_line); 365 ReLaunch(command_line);
365 return; 366 return;
366 } 367 }
367 368
368 // ChromeRestartRequest deletes itself after request sent to session manager. 369 // ChromeRestartRequest deletes itself after request sent to session manager.
369 (new ChromeRestartRequest(command_line.argv()))->Start(); 370 (new ChromeRestartRequest(command_line.argv()))->Start();
370 } 371 }
371 372
372 } // namespace chromeos 373 } // namespace chromeos
OLDNEW
« no previous file with comments | « ash/common/system/status_area_widget.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698