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

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

Issue 2644713002: cros: Use runtime stylus detection for ash palette. (Closed)
Patch Set: Fix test Created 3 years, 10 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/shell/shell_delegate_impl.cc ('k') | chrome/browser/chromeos/note_taking_helper.cc » ('j') | 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 <sys/socket.h> 7 #include <sys/socket.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/common/ash_switches.h" 10 #include "ash/common/ash_switches.h"
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ::switches::kDisableWebRtcHWDecoding, 173 ::switches::kDisableWebRtcHWDecoding,
174 ::switches::kDisableWebRtcHWEncoding, 174 ::switches::kDisableWebRtcHWEncoding,
175 #endif 175 #endif
176 ::switches::kDisableVaapiAcceleratedVideoEncode, 176 ::switches::kDisableVaapiAcceleratedVideoEncode,
177 #if defined(USE_OZONE) 177 #if defined(USE_OZONE)
178 ::switches::kOzonePlatform, 178 ::switches::kOzonePlatform,
179 #endif 179 #endif
180 app_list::switches::kDisableSyncAppList, 180 app_list::switches::kDisableSyncAppList,
181 app_list::switches::kEnableSyncAppList, 181 app_list::switches::kEnableSyncAppList,
182 ash::switches::kAshEnableTouchView, 182 ash::switches::kAshEnableTouchView,
183 ash::switches::kAshEnablePalette, 183 ash::switches::kAshForceEnablePalette,
184 ash::switches::kAshEnablePaletteOnAllDisplays, 184 ash::switches::kAshEnablePaletteOnAllDisplays,
185 ash::switches::kAshTouchHud, 185 ash::switches::kAshTouchHud,
186 ash::switches::kAuraLegacyPowerButton, 186 ash::switches::kAuraLegacyPowerButton,
187 chromeos::switches::kDefaultWallpaperLarge, 187 chromeos::switches::kDefaultWallpaperLarge,
188 chromeos::switches::kDefaultWallpaperSmall, 188 chromeos::switches::kDefaultWallpaperSmall,
189 chromeos::switches::kGuestWallpaperLarge, 189 chromeos::switches::kGuestWallpaperLarge,
190 chromeos::switches::kGuestWallpaperSmall, 190 chromeos::switches::kGuestWallpaperSmall,
191 // Please keep these in alphabetical order. Non-UI Compositor switches 191 // Please keep these in alphabetical order. Non-UI Compositor switches
192 // here should also be added to 192 // here should also be added to
193 // content/browser/renderer_host/render_process_host_impl.cc. 193 // content/browser/renderer_host/render_process_host_impl.cc.
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 // Relaunch chrome without session manager on dev box. 392 // Relaunch chrome without session manager on dev box.
393 ReLaunch(command_line); 393 ReLaunch(command_line);
394 return; 394 return;
395 } 395 }
396 396
397 // ChromeRestartRequest deletes itself after request sent to session manager. 397 // ChromeRestartRequest deletes itself after request sent to session manager.
398 (new ChromeRestartRequest(command_line.argv()))->Start(); 398 (new ChromeRestartRequest(command_line.argv()))->Start();
399 } 399 }
400 400
401 } // namespace chromeos 401 } // namespace chromeos
OLDNEW
« no previous file with comments | « ash/shell/shell_delegate_impl.cc ('k') | chrome/browser/chromeos/note_taking_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698