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

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

Issue 11414308: Add vsync notification command line switch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move setting to content. Created 7 years, 9 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 | Annotate | Revision Log
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/ash_switches.h" 9 #include "ash/ash_switches.h"
10 #include "base/chromeos/chromeos_version.h" 10 #include "base/chromeos/chromeos_version.h"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ::switches::kDisableSeccompSandbox, 85 ::switches::kDisableSeccompSandbox,
86 ::switches::kDisableThreadedCompositing, 86 ::switches::kDisableThreadedCompositing,
87 ::switches::kEnableAcceleratedOverflowScroll, 87 ::switches::kEnableAcceleratedOverflowScroll,
88 ::switches::kEnableCompositingForFixedPosition, 88 ::switches::kEnableCompositingForFixedPosition,
89 ::switches::kEnableGestureTapHighlight, 89 ::switches::kEnableGestureTapHighlight,
90 ::switches::kDisableGestureTapHighlight, 90 ::switches::kDisableGestureTapHighlight,
91 ::switches::kEnableLogging, 91 ::switches::kEnableLogging,
92 ::switches::kEnablePinch, 92 ::switches::kEnablePinch,
93 ::switches::kEnableThreadedCompositing, 93 ::switches::kEnableThreadedCompositing,
94 ::switches::kEnableViewport, 94 ::switches::kEnableViewport,
95 ::switches::kEnableVsyncNotification,
95 ::switches::kForceDeviceScaleFactor, 96 ::switches::kForceDeviceScaleFactor,
96 ::switches::kGpuStartupDialog, 97 ::switches::kGpuStartupDialog,
97 ::switches::kHasChromeOSDiamondKey, 98 ::switches::kHasChromeOSDiamondKey,
98 ::switches::kHasChromeOSKeyboard, 99 ::switches::kHasChromeOSKeyboard,
99 ::switches::kLoginProfile, 100 ::switches::kLoginProfile,
100 ::switches::kNaturalScrollDefault, 101 ::switches::kNaturalScrollDefault,
101 ::switches::kNoSandbox, 102 ::switches::kNoSandbox,
102 ::switches::kPpapiFlashArgs, 103 ::switches::kPpapiFlashArgs,
103 ::switches::kPpapiFlashInProcess, 104 ::switches::kPpapiFlashInProcess,
104 ::switches::kPpapiFlashPath, 105 ::switches::kPpapiFlashPath,
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 // Relaunch chrome without session manager on dev box. 325 // Relaunch chrome without session manager on dev box.
325 ReLaunch(command_line); 326 ReLaunch(command_line);
326 return; 327 return;
327 } 328 }
328 329
329 // ChromeRestartRequest deletes itself after request sent to session manager. 330 // ChromeRestartRequest deletes itself after request sent to session manager.
330 (new ChromeRestartRequest(command_line))->Start(); 331 (new ChromeRestartRequest(command_line))->Start();
331 } 332 }
332 333
333 } // namespace chromeos 334 } // namespace chromeos
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_settings.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698