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

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

Issue 189313002: Implement '--gpu-sandbox-failures-nonfatal' flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 9 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_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/ash_switches.h" 9 #include "ash/ash_switches.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 ::switches::kEnableThreadedCompositing, 104 ::switches::kEnableThreadedCompositing,
105 ::switches::kEnableTouchDragDrop, 105 ::switches::kEnableTouchDragDrop,
106 ::switches::kEnableTouchEditing, 106 ::switches::kEnableTouchEditing,
107 ::switches::kEnableUniversalAcceleratedOverflowScroll, 107 ::switches::kEnableUniversalAcceleratedOverflowScroll,
108 ::switches::kEnableViewport, 108 ::switches::kEnableViewport,
109 ::switches::kEnableViewportMeta, 109 ::switches::kEnableViewportMeta,
110 ::switches::kMainFrameResizesAreOrientationChanges, 110 ::switches::kMainFrameResizesAreOrientationChanges,
111 ::switches::kForceDeviceScaleFactor, 111 ::switches::kForceDeviceScaleFactor,
112 ::switches::kGpuStartupDialog, 112 ::switches::kGpuStartupDialog,
113 ::switches::kGpuSandboxAllowSysVShm, 113 ::switches::kGpuSandboxAllowSysVShm,
114 ::switches::kGpuSandboxFailuresNonfatal,
114 ::switches::kMultiProfiles, 115 ::switches::kMultiProfiles,
115 ::switches::kNoSandbox, 116 ::switches::kNoSandbox,
116 ::switches::kNumRasterThreads, 117 ::switches::kNumRasterThreads,
117 ::switches::kPpapiFlashArgs, 118 ::switches::kPpapiFlashArgs,
118 ::switches::kPpapiFlashPath, 119 ::switches::kPpapiFlashPath,
119 ::switches::kPpapiFlashVersion, 120 ::switches::kPpapiFlashVersion,
120 ::switches::kPpapiInProcess, 121 ::switches::kPpapiInProcess,
121 ::switches::kRendererStartupDialog, 122 ::switches::kRendererStartupDialog,
122 ::switches::kEnableShareGroupAsyncTextureUpload, 123 ::switches::kEnableShareGroupAsyncTextureUpload,
123 ::switches::kTabCaptureUpscaleQuality, 124 ::switches::kTabCaptureUpscaleQuality,
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 cc::switches::kShowPropertyChangedRects, 180 cc::switches::kShowPropertyChangedRects,
180 cc::switches::kShowReplicaScreenSpaceRects, 181 cc::switches::kShowReplicaScreenSpaceRects,
181 cc::switches::kShowScreenSpaceRects, 182 cc::switches::kShowScreenSpaceRects,
182 cc::switches::kShowSurfaceDamageRects, 183 cc::switches::kShowSurfaceDamageRects,
183 cc::switches::kSlowDownRasterScaleFactor, 184 cc::switches::kSlowDownRasterScaleFactor,
184 cc::switches::kTraceOverdraw, 185 cc::switches::kTraceOverdraw,
185 cc::switches::kUIDisablePartialSwap, 186 cc::switches::kUIDisablePartialSwap,
186 chromeos::switches::kDbusStub, 187 chromeos::switches::kDbusStub,
187 chromeos::switches::kDisableLoginAnimations, 188 chromeos::switches::kDisableLoginAnimations,
188 chromeos::switches::kDisableOobeAnimation, 189 chromeos::switches::kDisableOobeAnimation,
189 chromeos::switches::kGpuSandboxFailuresNonfatal,
190 chromeos::switches::kHasChromeOSDiamondKey, 190 chromeos::switches::kHasChromeOSDiamondKey,
191 chromeos::switches::kHasChromeOSKeyboard, 191 chromeos::switches::kHasChromeOSKeyboard,
192 chromeos::switches::kLoginProfile, 192 chromeos::switches::kLoginProfile,
193 chromeos::switches::kNaturalScrollDefault, 193 chromeos::switches::kNaturalScrollDefault,
194 ::switches::kEnableBrowserTextSubpixelPositioning, 194 ::switches::kEnableBrowserTextSubpixelPositioning,
195 ::switches::kEnableWebkitTextSubpixelPositioning, 195 ::switches::kEnableWebkitTextSubpixelPositioning,
196 policy::switches::kDeviceManagementUrl, 196 policy::switches::kDeviceManagementUrl,
197 views::corewm::switches::kNoDropShadows, 197 views::corewm::switches::kNoDropShadows,
198 views::corewm::switches::kWindowAnimationsDisabled, 198 views::corewm::switches::kWindowAnimationsDisabled,
199 }; 199 };
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 // Relaunch chrome without session manager on dev box. 350 // Relaunch chrome without session manager on dev box.
351 ReLaunch(command_line); 351 ReLaunch(command_line);
352 return; 352 return;
353 } 353 }
354 354
355 // ChromeRestartRequest deletes itself after request sent to session manager. 355 // ChromeRestartRequest deletes itself after request sent to session manager.
356 (new ChromeRestartRequest(command_line))->Start(); 356 (new ChromeRestartRequest(command_line))->Start();
357 } 357 }
358 358
359 } // namespace chromeos 359 } // 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