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

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

Issue 92853002: Support for drawing a debug border around animated layers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Copy switches for chromeos 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/layers/layer_impl.h ('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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 cc::switches::kEnableMapImage, 175 cc::switches::kEnableMapImage,
176 cc::switches::kEnablePartialSwap, 176 cc::switches::kEnablePartialSwap,
177 cc::switches::kEnablePerTilePainting, 177 cc::switches::kEnablePerTilePainting,
178 cc::switches::kEnablePinchVirtualViewport, 178 cc::switches::kEnablePinchVirtualViewport,
179 cc::switches::kEnableTopControlsPositionCalculation, 179 cc::switches::kEnableTopControlsPositionCalculation,
180 cc::switches::kMaxTilesForInterestArea, 180 cc::switches::kMaxTilesForInterestArea,
181 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 181 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
182 cc::switches::kNumRasterThreads, 182 cc::switches::kNumRasterThreads,
183 cc::switches::kShowCompositedLayerBorders, 183 cc::switches::kShowCompositedLayerBorders,
184 cc::switches::kShowFPSCounter, 184 cc::switches::kShowFPSCounter,
185 cc::switches::kShowLayerAnimationBounds,
185 cc::switches::kShowNonOccludingRects, 186 cc::switches::kShowNonOccludingRects,
186 cc::switches::kShowOccludingRects, 187 cc::switches::kShowOccludingRects,
187 cc::switches::kShowPropertyChangedRects, 188 cc::switches::kShowPropertyChangedRects,
188 cc::switches::kShowReplicaScreenSpaceRects, 189 cc::switches::kShowReplicaScreenSpaceRects,
189 cc::switches::kShowScreenSpaceRects, 190 cc::switches::kShowScreenSpaceRects,
190 cc::switches::kShowSurfaceDamageRects, 191 cc::switches::kShowSurfaceDamageRects,
191 cc::switches::kSlowDownRasterScaleFactor, 192 cc::switches::kSlowDownRasterScaleFactor,
192 cc::switches::kTraceOverdraw, 193 cc::switches::kTraceOverdraw,
193 cc::switches::kUIDisablePartialSwap, 194 cc::switches::kUIDisablePartialSwap,
194 cc::switches::kUIEnablePerTilePainting, 195 cc::switches::kUIEnablePerTilePainting,
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 // Relaunch chrome without session manager on dev box. 367 // Relaunch chrome without session manager on dev box.
367 ReLaunch(command_line); 368 ReLaunch(command_line);
368 return; 369 return;
369 } 370 }
370 371
371 // ChromeRestartRequest deletes itself after request sent to session manager. 372 // ChromeRestartRequest deletes itself after request sent to session manager.
372 (new ChromeRestartRequest(command_line))->Start(); 373 (new ChromeRestartRequest(command_line))->Start();
373 } 374 }
374 375
375 } // namespace chromeos 376 } // namespace chromeos
OLDNEW
« no previous file with comments | « cc/layers/layer_impl.h ('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