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

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

Issue 1381163002: Add a flag to disable partial raster in renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 // Please keep these in alphabetical order. Non-UI Compositor switches 186 // Please keep these in alphabetical order. Non-UI Compositor switches
187 // here should also be added to 187 // here should also be added to
188 // content/browser/renderer_host/render_process_host_impl.cc. 188 // content/browser/renderer_host/render_process_host_impl.cc.
189 cc::switches::kDisableCompositedAntialiasing, 189 cc::switches::kDisableCompositedAntialiasing,
190 cc::switches::kDisableMainFrameBeforeActivation, 190 cc::switches::kDisableMainFrameBeforeActivation,
191 cc::switches::kDisableThreadedAnimation, 191 cc::switches::kDisableThreadedAnimation,
192 cc::switches::kEnableBeginFrameScheduling, 192 cc::switches::kEnableBeginFrameScheduling,
193 cc::switches::kEnableGpuBenchmarking, 193 cc::switches::kEnableGpuBenchmarking,
194 cc::switches::kEnablePropertyTreeVerification, 194 cc::switches::kEnablePropertyTreeVerification,
195 cc::switches::kEnableMainFrameBeforeActivation, 195 cc::switches::kEnableMainFrameBeforeActivation,
196 cc::switches::kEnablePartialRaster,
196 cc::switches::kShowCompositedLayerBorders, 197 cc::switches::kShowCompositedLayerBorders,
197 cc::switches::kShowFPSCounter, 198 cc::switches::kShowFPSCounter,
198 cc::switches::kShowLayerAnimationBounds, 199 cc::switches::kShowLayerAnimationBounds,
199 cc::switches::kShowPropertyChangedRects, 200 cc::switches::kShowPropertyChangedRects,
200 cc::switches::kShowReplicaScreenSpaceRects, 201 cc::switches::kShowReplicaScreenSpaceRects,
201 cc::switches::kShowScreenSpaceRects, 202 cc::switches::kShowScreenSpaceRects,
202 cc::switches::kShowSurfaceDamageRects, 203 cc::switches::kShowSurfaceDamageRects,
203 cc::switches::kSlowDownRasterScaleFactor, 204 cc::switches::kSlowDownRasterScaleFactor,
204 cc::switches::kUIDisablePartialSwap, 205 cc::switches::kUIDisablePartialSwap,
205 chromeos::switches::kConsumerDeviceManagementUrl, 206 chromeos::switches::kConsumerDeviceManagementUrl,
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 // Relaunch chrome without session manager on dev box. 351 // Relaunch chrome without session manager on dev box.
351 ReLaunch(command_line); 352 ReLaunch(command_line);
352 return; 353 return;
353 } 354 }
354 355
355 // ChromeRestartRequest deletes itself after request sent to session manager. 356 // ChromeRestartRequest deletes itself after request sent to session manager.
356 (new ChromeRestartRequest(command_line.argv()))->Start(); 357 (new ChromeRestartRequest(command_line.argv()))->Start();
357 } 358 }
358 359
359 } // namespace chromeos 360 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698