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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 435383002: adds WARP support to Chromium, for Metro mode only, on Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: renamed switch Created 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | content/browser/gpu/gpu_data_manager_impl.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 // Windows 8 and higher. Used when relaunching metro Chrome. 1305 // Windows 8 and higher. Used when relaunching metro Chrome.
1306 const char kForceImmersive[] = "force-immersive"; 1306 const char kForceImmersive[] = "force-immersive";
1307 1307
1308 // For the DelegateExecute verb handler to launch Chrome in desktop mode on 1308 // For the DelegateExecute verb handler to launch Chrome in desktop mode on
1309 // Windows 8 and higher. Used when relaunching metro Chrome. 1309 // Windows 8 and higher. Used when relaunching metro Chrome.
1310 const char kForceDesktop[] = "force-desktop"; 1310 const char kForceDesktop[] = "force-desktop";
1311 1311
1312 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. 1312 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut.
1313 const char kRelaunchShortcut[] = "relaunch-shortcut"; 1313 const char kRelaunchShortcut[] = "relaunch-shortcut";
1314 1314
1315 // Requests that Chrome connect to the running Metro viewer process.
1316 const char kViewerConnect[] = "viewer-connect";
1317
1318 // Requests that Chrome launch the Metro viewer process via the given appid 1315 // Requests that Chrome launch the Metro viewer process via the given appid
1319 // (which is assumed to be registered as default browser) and synchronously 1316 // (which is assumed to be registered as default browser) and synchronously
1320 // connect to it. 1317 // connect to it.
1321 const char kViewerLaunchViaAppId[] = "viewer-launch-via-appid"; 1318 const char kViewerLaunchViaAppId[] = "viewer-launch-via-appid";
1322 1319
1323 // Waits for the given handle to be signaled before relaunching metro Chrome on 1320 // Waits for the given handle to be signaled before relaunching metro Chrome on
1324 // Windows 8 and higher. 1321 // Windows 8 and higher.
1325 const char kWaitForMutex[] = "wait-for-mutex"; 1322 const char kWaitForMutex[] = "wait-for-mutex";
1326 1323
1327 // Indicates that chrome was launched to service a search request in Windows 8. 1324 // Indicates that chrome was launched to service a search request in Windows 8.
(...skipping 28 matching lines...) Expand all
1356 1353
1357 // ----------------------------------------------------------------------------- 1354 // -----------------------------------------------------------------------------
1358 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1355 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1359 // 1356 //
1360 // You were going to just dump your switches here, weren't you? Instead, please 1357 // You were going to just dump your switches here, weren't you? Instead, please
1361 // put them in alphabetical order above, or in order inside the appropriate 1358 // put them in alphabetical order above, or in order inside the appropriate
1362 // ifdef at the bottom. The order should match the header. 1359 // ifdef at the bottom. The order should match the header.
1363 // ----------------------------------------------------------------------------- 1360 // -----------------------------------------------------------------------------
1364 1361
1365 } // namespace switches 1362 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | content/browser/gpu/gpu_data_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698