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

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

Issue 2266123002: arc: Add the --arc-available switch (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | chromeos/chromeos_switches.h » ('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/common/ash_switches.h" 9 #include "ash/common/ash_switches.h"
10 #include "base/base_switches.h" 10 #include "base/base_switches.h"
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 cc::switches::kShowCompositedLayerBorders, 201 cc::switches::kShowCompositedLayerBorders,
202 cc::switches::kShowFPSCounter, 202 cc::switches::kShowFPSCounter,
203 cc::switches::kShowLayerAnimationBounds, 203 cc::switches::kShowLayerAnimationBounds,
204 cc::switches::kShowPropertyChangedRects, 204 cc::switches::kShowPropertyChangedRects,
205 cc::switches::kShowReplicaScreenSpaceRects, 205 cc::switches::kShowReplicaScreenSpaceRects,
206 cc::switches::kShowScreenSpaceRects, 206 cc::switches::kShowScreenSpaceRects,
207 cc::switches::kShowSurfaceDamageRects, 207 cc::switches::kShowSurfaceDamageRects,
208 cc::switches::kSlowDownRasterScaleFactor, 208 cc::switches::kSlowDownRasterScaleFactor,
209 cc::switches::kUIEnableLayerLists, 209 cc::switches::kUIEnableLayerLists,
210 cc::switches::kUIShowFPSCounter, 210 cc::switches::kUIShowFPSCounter,
211 chromeos::switches::kArcAvailable,
211 chromeos::switches::kDbusStub, 212 chromeos::switches::kDbusStub,
212 chromeos::switches::kDbusUnstubClients, 213 chromeos::switches::kDbusUnstubClients,
213 chromeos::switches::kDisableArcDataWipe, 214 chromeos::switches::kDisableArcDataWipe,
214 chromeos::switches::kDisableArcOptInVerification, 215 chromeos::switches::kDisableArcOptInVerification,
215 chromeos::switches::kDisableLoginAnimations, 216 chromeos::switches::kDisableLoginAnimations,
216 chromeos::switches::kEnableArc, 217 chromeos::switches::kEnableArc,
217 chromeos::switches::kEnterpriseDisableArc, 218 chromeos::switches::kEnterpriseDisableArc,
218 chromeos::switches::kEnterpriseEnableForcedReEnrollment, 219 chromeos::switches::kEnterpriseEnableForcedReEnrollment,
219 chromeos::switches::kHasChromeOSDiamondKey, 220 chromeos::switches::kHasChromeOSDiamondKey,
220 chromeos::switches::kLoginProfile, 221 chromeos::switches::kLoginProfile,
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 // Relaunch chrome without session manager on dev box. 362 // Relaunch chrome without session manager on dev box.
362 ReLaunch(command_line); 363 ReLaunch(command_line);
363 return; 364 return;
364 } 365 }
365 366
366 // ChromeRestartRequest deletes itself after request sent to session manager. 367 // ChromeRestartRequest deletes itself after request sent to session manager.
367 (new ChromeRestartRequest(command_line.argv()))->Start(); 368 (new ChromeRestartRequest(command_line.argv()))->Start();
368 } 369 }
369 370
370 } // namespace chromeos 371 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | chromeos/chromeos_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698