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

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

Issue 11777019: Move switch kUseGpuInTests from chrome to content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/public/common/content_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 (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 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after
1302 // The value is the host:port of the trusted proxy. 1302 // The value is the host:port of the trusted proxy.
1303 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; 1303 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy";
1304 1304
1305 // Experimental. Shows a dialog asking the user to try chrome. This flag is to 1305 // Experimental. Shows a dialog asking the user to try chrome. This flag is to
1306 // be used only by the upgrade process. 1306 // be used only by the upgrade process.
1307 const char kTryChromeAgain[] = "try-chrome-again"; 1307 const char kTryChromeAgain[] = "try-chrome-again";
1308 1308
1309 // Runs un-installation steps that were done by chrome first-run. 1309 // Runs un-installation steps that were done by chrome first-run.
1310 const char kUninstall[] = "uninstall"; 1310 const char kUninstall[] = "uninstall";
1311 1311
1312 // Use hardware gpu, if available, for tests.
1313 const char kUseGpuInTests[] = "use-gpu-in-tests";
1314
1315 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary 1312 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary
1316 // testing flag. 1313 // testing flag.
1317 const char kUseSpdy[] = "use-spdy"; 1314 const char kUseSpdy[] = "use-spdy";
1318 1315
1319 // Enables use of the spelling web service. This will only work if asynchronous 1316 // Enables use of the spelling web service. This will only work if asynchronous
1320 // spell checking is not disabled. 1317 // spell checking is not disabled.
1321 const char kUseSpellingService[] = "use-spelling-service"; 1318 const char kUseSpellingService[] = "use-spelling-service";
1322 1319
1323 // Sets the maximum SPDY sessions per domain. 1320 // Sets the maximum SPDY sessions per domain.
1324 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; 1321 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain";
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
1615 1612
1616 // ----------------------------------------------------------------------------- 1613 // -----------------------------------------------------------------------------
1617 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1614 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1618 // 1615 //
1619 // You were going to just dump your switches here, weren't you? Instead, please 1616 // You were going to just dump your switches here, weren't you? Instead, please
1620 // put them in alphabetical order above, or in order inside the appropriate 1617 // put them in alphabetical order above, or in order inside the appropriate
1621 // ifdef at the bottom. The order should match the header. 1618 // ifdef at the bottom. The order should match the header.
1622 // ----------------------------------------------------------------------------- 1619 // -----------------------------------------------------------------------------
1623 1620
1624 } // namespace switches 1621 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698