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

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

Issue 2825383003: Fix stylus tools palette. (Closed)
Patch Set: Fix nits. Created 3 years, 7 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 | « chrome/browser/about_flags.cc ('k') | chrome/browser/chromeos/note_taking_helper_unittest.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/ash_switches.h" 10 #include "ash/ash_switches.h"
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 ::switches::kDisableWebRtcHWDecoding, 174 ::switches::kDisableWebRtcHWDecoding,
175 ::switches::kDisableWebRtcHWEncoding, 175 ::switches::kDisableWebRtcHWEncoding,
176 #endif 176 #endif
177 ::switches::kDisableVaapiAcceleratedVideoEncode, 177 ::switches::kDisableVaapiAcceleratedVideoEncode,
178 #if defined(USE_OZONE) 178 #if defined(USE_OZONE)
179 ::switches::kOzonePlatform, 179 ::switches::kOzonePlatform,
180 #endif 180 #endif
181 app_list::switches::kDisableSyncAppList, 181 app_list::switches::kDisableSyncAppList,
182 app_list::switches::kEnableSyncAppList, 182 app_list::switches::kEnableSyncAppList,
183 ash::switches::kAshEnableTouchView, 183 ash::switches::kAshEnableTouchView,
184 ash::switches::kAshForceEnablePalette, 184 ash::switches::kAshForceEnableStylusTools,
185 ash::switches::kAshEnablePaletteOnAllDisplays, 185 ash::switches::kAshEnablePaletteOnAllDisplays,
186 ash::switches::kAshTouchHud, 186 ash::switches::kAshTouchHud,
187 ash::switches::kAuraLegacyPowerButton, 187 ash::switches::kAuraLegacyPowerButton,
188 chromeos::switches::kDefaultWallpaperLarge, 188 chromeos::switches::kDefaultWallpaperLarge,
189 chromeos::switches::kDefaultWallpaperSmall, 189 chromeos::switches::kDefaultWallpaperSmall,
190 chromeos::switches::kGuestWallpaperLarge, 190 chromeos::switches::kGuestWallpaperLarge,
191 chromeos::switches::kGuestWallpaperSmall, 191 chromeos::switches::kGuestWallpaperSmall,
192 // Please keep these in alphabetical order. Non-UI Compositor switches 192 // Please keep these in alphabetical order. Non-UI Compositor switches
193 // here should also be added to 193 // here should also be added to
194 // content/browser/renderer_host/render_process_host_impl.cc. 194 // content/browser/renderer_host/render_process_host_impl.cc.
(...skipping 197 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 | « chrome/browser/about_flags.cc ('k') | chrome/browser/chromeos/note_taking_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698