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

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

Issue 85813003: --enable-gpu-rasterization flag for turning on hybrid ganesh mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rework patch for ToT conflicts Created 7 years 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 | « cc/base/switches.cc ('k') | content/browser/renderer_host/render_process_host_impl.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 <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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 // Please keep these in alphabetical order. Non-UI Compositor switches 163 // Please keep these in alphabetical order. Non-UI Compositor switches
164 // here should also be added to 164 // here should also be added to
165 // content/browser/renderer_host/render_process_host_impl.cc. 165 // content/browser/renderer_host/render_process_host_impl.cc.
166 cc::switches::kBackgroundColorInsteadOfCheckerboard, 166 cc::switches::kBackgroundColorInsteadOfCheckerboard,
167 cc::switches::kCompositeToMailbox, 167 cc::switches::kCompositeToMailbox,
168 cc::switches::kDisableCompositedAntialiasing, 168 cc::switches::kDisableCompositedAntialiasing,
169 cc::switches::kDisableCompositorTouchHitTesting, 169 cc::switches::kDisableCompositorTouchHitTesting,
170 cc::switches::kDisableImplSidePainting, 170 cc::switches::kDisableImplSidePainting,
171 cc::switches::kDisableMapImage, 171 cc::switches::kDisableMapImage,
172 cc::switches::kDisableThreadedAnimation, 172 cc::switches::kDisableThreadedAnimation,
173 cc::switches::kEnableGPURasterization,
173 cc::switches::kEnableImplSidePainting, 174 cc::switches::kEnableImplSidePainting,
174 cc::switches::kEnableMapImage, 175 cc::switches::kEnableMapImage,
175 cc::switches::kEnablePartialSwap, 176 cc::switches::kEnablePartialSwap,
176 cc::switches::kEnablePerTilePainting, 177 cc::switches::kEnablePerTilePainting,
177 cc::switches::kEnablePinchVirtualViewport, 178 cc::switches::kEnablePinchVirtualViewport,
178 cc::switches::kEnableTopControlsPositionCalculation, 179 cc::switches::kEnableTopControlsPositionCalculation,
179 cc::switches::kForceDirectLayerDrawing, 180 cc::switches::kForceDirectLayerDrawing,
180 cc::switches::kLowResolutionContentsScaleFactor, 181 cc::switches::kLowResolutionContentsScaleFactor,
181 cc::switches::kMaxTilesForInterestArea, 182 cc::switches::kMaxTilesForInterestArea,
182 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 183 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 // Relaunch chrome without session manager on dev box. 368 // Relaunch chrome without session manager on dev box.
368 ReLaunch(command_line); 369 ReLaunch(command_line);
369 return; 370 return;
370 } 371 }
371 372
372 // ChromeRestartRequest deletes itself after request sent to session manager. 373 // ChromeRestartRequest deletes itself after request sent to session manager.
373 (new ChromeRestartRequest(command_line))->Start(); 374 (new ChromeRestartRequest(command_line))->Start();
374 } 375 }
375 376
376 } // namespace chromeos 377 } // namespace chromeos
OLDNEW
« no previous file with comments | « cc/base/switches.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