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

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

Issue 15846014: Added support for EXT_frag_depth (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing Created 7 years, 6 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 | « DEPS ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('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/chromeos/chromeos_version.h" 10 #include "base/chromeos/chromeos_version.h"
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 ::switches::kUIDisableThreadedCompositing, 121 ::switches::kUIDisableThreadedCompositing,
122 ::switches::kUIMaxFramesPending, 122 ::switches::kUIMaxFramesPending,
123 ::switches::kUIPrioritizeInGpuProcess, 123 ::switches::kUIPrioritizeInGpuProcess,
124 #if defined(USE_CRAS) 124 #if defined(USE_CRAS)
125 ::switches::kUseCras, 125 ::switches::kUseCras,
126 #endif 126 #endif
127 ::switches::kUseGL, 127 ::switches::kUseGL,
128 ::switches::kUserDataDir, 128 ::switches::kUserDataDir,
129 ::switches::kUseExynosVda, 129 ::switches::kUseExynosVda,
130 ::switches::kV, 130 ::switches::kV,
131 ::switches::kEnableWebGLDraftExtensions,
131 ash::switches::kAshTouchHud, 132 ash::switches::kAshTouchHud,
132 ash::switches::kAuraLegacyPowerButton, 133 ash::switches::kAuraLegacyPowerButton,
133 ash::switches::kAshDisableNewAudioHandler, 134 ash::switches::kAshDisableNewAudioHandler,
134 ash::switches::kAshEnableAudioDeviceMenu, 135 ash::switches::kAshEnableAudioDeviceMenu,
135 // Please keep these in alphabetical order. Non-UI Compositor switches 136 // Please keep these in alphabetical order. Non-UI Compositor switches
136 // here should also be added to 137 // here should also be added to
137 // content/browser/renderer_host/render_process_host_impl.cc. 138 // content/browser/renderer_host/render_process_host_impl.cc.
138 cc::switches::kBackgroundColorInsteadOfCheckerboard, 139 cc::switches::kBackgroundColorInsteadOfCheckerboard,
139 cc::switches::kCompositeToMailbox, 140 cc::switches::kCompositeToMailbox,
140 cc::switches::kDisableColorEstimator, 141 cc::switches::kDisableColorEstimator,
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 // Relaunch chrome without session manager on dev box. 342 // Relaunch chrome without session manager on dev box.
342 ReLaunch(command_line); 343 ReLaunch(command_line);
343 return; 344 return;
344 } 345 }
345 346
346 // ChromeRestartRequest deletes itself after request sent to session manager. 347 // ChromeRestartRequest deletes itself after request sent to session manager.
347 (new ChromeRestartRequest(command_line))->Start(); 348 (new ChromeRestartRequest(command_line))->Start();
348 } 349 }
349 350
350 } // namespace chromeos 351 } // namespace chromeos
OLDNEW
« no previous file with comments | « DEPS ('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