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

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

Issue 2498383002: cc: Implement tiling iterator based on pyramid sequence.
Patch Set: Created 4 years, 1 month 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 <sys/socket.h> 7 #include <sys/socket.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/common/ash_switches.h" 10 #include "ash/common/ash_switches.h"
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 cc::switches::kEnableGpuBenchmarking, 196 cc::switches::kEnableGpuBenchmarking,
197 cc::switches::kEnableLayerLists, 197 cc::switches::kEnableLayerLists,
198 cc::switches::kEnableMainFrameBeforeActivation, 198 cc::switches::kEnableMainFrameBeforeActivation,
199 cc::switches::kShowCompositedLayerBorders, 199 cc::switches::kShowCompositedLayerBorders,
200 cc::switches::kShowFPSCounter, 200 cc::switches::kShowFPSCounter,
201 cc::switches::kShowLayerAnimationBounds, 201 cc::switches::kShowLayerAnimationBounds,
202 cc::switches::kShowPropertyChangedRects, 202 cc::switches::kShowPropertyChangedRects,
203 cc::switches::kShowScreenSpaceRects, 203 cc::switches::kShowScreenSpaceRects,
204 cc::switches::kShowSurfaceDamageRects, 204 cc::switches::kShowSurfaceDamageRects,
205 cc::switches::kSlowDownRasterScaleFactor, 205 cc::switches::kSlowDownRasterScaleFactor,
206 cc::switches::kTilingIterator,
206 cc::switches::kUIEnableLayerLists, 207 cc::switches::kUIEnableLayerLists,
207 cc::switches::kUIShowFPSCounter, 208 cc::switches::kUIShowFPSCounter,
208 chromeos::switches::kArcAvailable, 209 chromeos::switches::kArcAvailable,
209 chromeos::switches::kDbusStub, 210 chromeos::switches::kDbusStub,
210 chromeos::switches::kDisableArcDataWipe, 211 chromeos::switches::kDisableArcDataWipe,
211 chromeos::switches::kDisableArcOptInVerification, 212 chromeos::switches::kDisableArcOptInVerification,
212 chromeos::switches::kDisableLoginAnimations, 213 chromeos::switches::kDisableLoginAnimations,
213 chromeos::switches::kEnableArc, 214 chromeos::switches::kEnableArc,
214 chromeos::switches::kEnterpriseDisableArc, 215 chromeos::switches::kEnterpriseDisableArc,
215 chromeos::switches::kEnterpriseEnableForcedReEnrollment, 216 chromeos::switches::kEnterpriseEnableForcedReEnrollment,
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 // Relaunch chrome without session manager on dev box. 388 // Relaunch chrome without session manager on dev box.
388 ReLaunch(command_line); 389 ReLaunch(command_line);
389 return; 390 return;
390 } 391 }
391 392
392 // ChromeRestartRequest deletes itself after request sent to session manager. 393 // ChromeRestartRequest deletes itself after request sent to session manager.
393 (new ChromeRestartRequest(command_line.argv()))->Start(); 394 (new ChromeRestartRequest(command_line.argv()))->Start();
394 } 395 }
395 396
396 } // namespace chromeos 397 } // namespace chromeos
OLDNEW
« no previous file with comments | « cc/tiles/tiling_set_raster_queue_required.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