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

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

Issue 1224623014: Refactor ParseArrayGeometry to use standard Chromium facilities. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 ::switches::kExtraTouchNoiseFiltering, 123 ::switches::kExtraTouchNoiseFiltering,
124 #endif 124 #endif
125 ::switches::kMainFrameResizesAreOrientationChanges, 125 ::switches::kMainFrameResizesAreOrientationChanges,
126 ::switches::kForceDeviceScaleFactor, 126 ::switches::kForceDeviceScaleFactor,
127 ::switches::kForceGpuRasterization, 127 ::switches::kForceGpuRasterization,
128 ::switches::kGpuRasterizationMSAASampleCount, 128 ::switches::kGpuRasterizationMSAASampleCount,
129 ::switches::kGpuStartupDialog, 129 ::switches::kGpuStartupDialog,
130 ::switches::kGpuSandboxAllowSysVShm, 130 ::switches::kGpuSandboxAllowSysVShm,
131 ::switches::kGpuSandboxFailuresFatal, 131 ::switches::kGpuSandboxFailuresFatal,
132 ::switches::kGpuSandboxStartEarly, 132 ::switches::kGpuSandboxStartEarly,
133 ::switches::kMicrophonePositions,
133 ::switches::kNoSandbox, 134 ::switches::kNoSandbox,
134 ::switches::kNumRasterThreads, 135 ::switches::kNumRasterThreads,
135 ::switches::kPpapiFlashArgs, 136 ::switches::kPpapiFlashArgs,
136 ::switches::kPpapiFlashPath, 137 ::switches::kPpapiFlashPath,
137 ::switches::kPpapiFlashVersion, 138 ::switches::kPpapiFlashVersion,
138 ::switches::kPpapiInProcess, 139 ::switches::kPpapiInProcess,
139 ::switches::kRendererStartupDialog, 140 ::switches::kRendererStartupDialog,
140 ::switches::kRootLayerScrolls, 141 ::switches::kRootLayerScrolls,
141 ::switches::kEnableShareGroupAsyncTextureUpload, 142 ::switches::kEnableShareGroupAsyncTextureUpload,
142 ::switches::kTabCaptureUpscaleQuality, 143 ::switches::kTabCaptureUpscaleQuality,
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 // Relaunch chrome without session manager on dev box. 382 // Relaunch chrome without session manager on dev box.
382 ReLaunch(command_line); 383 ReLaunch(command_line);
383 return; 384 return;
384 } 385 }
385 386
386 // ChromeRestartRequest deletes itself after request sent to session manager. 387 // ChromeRestartRequest deletes itself after request sent to session manager.
387 (new ChromeRestartRequest(command_line))->Start(); 388 (new ChromeRestartRequest(command_line))->Start();
388 } 389 }
389 390
390 } // namespace chromeos 391 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698