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

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

Issue 444263002: Added switch that let us 'un-stub' certain dbus clients. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chromeos/chromeos.gyp » ('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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 cc::switches::kShowNonOccludingRects, 189 cc::switches::kShowNonOccludingRects,
190 cc::switches::kShowOccludingRects, 190 cc::switches::kShowOccludingRects,
191 cc::switches::kShowPropertyChangedRects, 191 cc::switches::kShowPropertyChangedRects,
192 cc::switches::kShowReplicaScreenSpaceRects, 192 cc::switches::kShowReplicaScreenSpaceRects,
193 cc::switches::kShowScreenSpaceRects, 193 cc::switches::kShowScreenSpaceRects,
194 cc::switches::kShowSurfaceDamageRects, 194 cc::switches::kShowSurfaceDamageRects,
195 cc::switches::kSlowDownRasterScaleFactor, 195 cc::switches::kSlowDownRasterScaleFactor,
196 cc::switches::kUIDisablePartialSwap, 196 cc::switches::kUIDisablePartialSwap,
197 chromeos::switches::kConsumerDeviceManagementUrl, 197 chromeos::switches::kConsumerDeviceManagementUrl,
198 chromeos::switches::kDbusStub, 198 chromeos::switches::kDbusStub,
199 chromeos::switches::kDbusUnstubClients,
199 chromeos::switches::kDisableLoginAnimations, 200 chromeos::switches::kDisableLoginAnimations,
200 chromeos::switches::kEnableConsumerManagement, 201 chromeos::switches::kEnableConsumerManagement,
201 chromeos::switches::kEnterpriseEnableForcedReEnrollment, 202 chromeos::switches::kEnterpriseEnableForcedReEnrollment,
202 chromeos::switches::kHasChromeOSDiamondKey, 203 chromeos::switches::kHasChromeOSDiamondKey,
203 chromeos::switches::kHasChromeOSKeyboard, 204 chromeos::switches::kHasChromeOSKeyboard,
204 chromeos::switches::kLoginProfile, 205 chromeos::switches::kLoginProfile,
205 chromeos::switches::kNaturalScrollDefault, 206 chromeos::switches::kNaturalScrollDefault,
206 chromeos::switches::kSystemInDevMode, 207 chromeos::switches::kSystemInDevMode,
207 policy::switches::kDeviceManagementUrl, 208 policy::switches::kDeviceManagementUrl,
208 ::switches::kEnableBrowserTextSubpixelPositioning, 209 ::switches::kEnableBrowserTextSubpixelPositioning,
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 // Relaunch chrome without session manager on dev box. 371 // Relaunch chrome without session manager on dev box.
371 ReLaunch(command_line); 372 ReLaunch(command_line);
372 return; 373 return;
373 } 374 }
374 375
375 // ChromeRestartRequest deletes itself after request sent to session manager. 376 // ChromeRestartRequest deletes itself after request sent to session manager.
376 (new ChromeRestartRequest(command_line))->Start(); 377 (new ChromeRestartRequest(command_line))->Start();
377 } 378 }
378 379
379 } // namespace chromeos 380 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | chromeos/chromeos.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698