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

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

Issue 27393002: Revert "Add a flag for enabling/disabling the new accelerated scrolling path" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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/command_line.h" 10 #include "base/command_line.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 ::switches::kDisableGpuShaderDiskCache, 82 ::switches::kDisableGpuShaderDiskCache,
83 ::switches::kDisableGpuWatchdog, 83 ::switches::kDisableGpuWatchdog,
84 ::switches::kDisableGpuCompositing, 84 ::switches::kDisableGpuCompositing,
85 ::switches::kDisablePrefixedEncryptedMedia, 85 ::switches::kDisablePrefixedEncryptedMedia,
86 ::switches::kDisablePanelFitting, 86 ::switches::kDisablePanelFitting,
87 ::switches::kDisableSeccompFilterSandbox, 87 ::switches::kDisableSeccompFilterSandbox,
88 ::switches::kDisableSetuidSandbox, 88 ::switches::kDisableSetuidSandbox,
89 ::switches::kDisableThreadedCompositing, 89 ::switches::kDisableThreadedCompositing,
90 ::switches::kDisableTouchDragDrop, 90 ::switches::kDisableTouchDragDrop,
91 ::switches::kDisableTouchEditing, 91 ::switches::kDisableTouchEditing,
92 ::switches::kDisableUniversalAcceleratedOverflowScroll,
93 ::switches::kDisableWebKitMediaSource, 92 ::switches::kDisableWebKitMediaSource,
94 ::switches::kDisableAcceleratedFixedRootBackground, 93 ::switches::kDisableAcceleratedFixedRootBackground,
95 ::switches::kEnableAcceleratedFixedRootBackground, 94 ::switches::kEnableAcceleratedFixedRootBackground,
96 ::switches::kEnableAcceleratedOverflowScroll, 95 ::switches::kEnableAcceleratedOverflowScroll,
97 ::switches::kEnableBeginFrameScheduling, 96 ::switches::kEnableBeginFrameScheduling,
98 ::switches::kEnableCompositingForFixedPosition, 97 ::switches::kEnableCompositingForFixedPosition,
99 ::switches::kEnableDeadlineScheduling, 98 ::switches::kEnableDeadlineScheduling,
100 ::switches::kEnableDelegatedRenderer, 99 ::switches::kEnableDelegatedRenderer,
101 ::switches::kEnableEncryptedMedia, 100 ::switches::kEnableEncryptedMedia,
102 ::switches::kEnableGestureTapHighlight, 101 ::switches::kEnableGestureTapHighlight,
103 ::switches::kDisableGestureTapHighlight, 102 ::switches::kDisableGestureTapHighlight,
104 ::switches::kDisableGpuSandbox, 103 ::switches::kDisableGpuSandbox,
105 ::switches::kEnableLogging, 104 ::switches::kEnableLogging,
106 ::switches::kEnablePinch, 105 ::switches::kEnablePinch,
107 ::switches::kEnableThreadedCompositing, 106 ::switches::kEnableThreadedCompositing,
108 ::switches::kEnableTouchDragDrop, 107 ::switches::kEnableTouchDragDrop,
109 ::switches::kEnableTouchEditing, 108 ::switches::kEnableTouchEditing,
110 ::switches::kEnableUniversalAcceleratedOverflowScroll,
111 ::switches::kEnableViewport, 109 ::switches::kEnableViewport,
112 ::switches::kForceDeviceScaleFactor, 110 ::switches::kForceDeviceScaleFactor,
113 ::switches::kGpuStartupDialog, 111 ::switches::kGpuStartupDialog,
114 ::switches::kGpuSandboxAllowSysVShm, 112 ::switches::kGpuSandboxAllowSysVShm,
115 ::switches::kMultiProfiles, 113 ::switches::kMultiProfiles,
116 ::switches::kNoSandbox, 114 ::switches::kNoSandbox,
117 ::switches::kPpapiFlashArgs, 115 ::switches::kPpapiFlashArgs,
118 ::switches::kPpapiFlashInProcess, 116 ::switches::kPpapiFlashInProcess,
119 ::switches::kPpapiFlashPath, 117 ::switches::kPpapiFlashPath,
120 ::switches::kPpapiFlashVersion, 118 ::switches::kPpapiFlashVersion,
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 // Relaunch chrome without session manager on dev box. 362 // Relaunch chrome without session manager on dev box.
365 ReLaunch(command_line); 363 ReLaunch(command_line);
366 return; 364 return;
367 } 365 }
368 366
369 // ChromeRestartRequest deletes itself after request sent to session manager. 367 // ChromeRestartRequest deletes itself after request sent to session manager.
370 (new ChromeRestartRequest(command_line))->Start(); 368 (new ChromeRestartRequest(command_line))->Start();
371 } 369 }
372 370
373 } // namespace chromeos 371 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.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