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

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

Issue 11667030: Add GPU memory usage contents browser test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Contents browser test ready for review 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
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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1611 1608
1612 // ----------------------------------------------------------------------------- 1609 // -----------------------------------------------------------------------------
1613 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1610 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1614 // 1611 //
1615 // You were going to just dump your switches here, weren't you? Instead, please 1612 // You were going to just dump your switches here, weren't you? Instead, please
1616 // put them in alphabetical order above, or in order inside the appropriate 1613 // put them in alphabetical order above, or in order inside the appropriate
1617 // ifdef at the bottom. The order should match the header. 1614 // ifdef at the bottom. The order should match the header.
1618 // ----------------------------------------------------------------------------- 1615 // -----------------------------------------------------------------------------
1619 1616
1620 } // namespace switches 1617 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698