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

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

Issue 12684010: Add simple cache backend experiment hidden behind a flag. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: removed CHECKs Created 7 years, 9 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | 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 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 // Sets the maximum concurrent streams over a SPDY session. 1367 // Sets the maximum concurrent streams over a SPDY session.
1368 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; 1368 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams";
1369 1369
1370 // Specifies the user data directory, which is where the browser will look for 1370 // Specifies the user data directory, which is where the browser will look for
1371 // all of its state. 1371 // all of its state.
1372 const char kUserDataDir[] = "user-data-dir"; 1372 const char kUserDataDir[] = "user-data-dir";
1373 1373
1374 // Uses the ClientLogin signin flow instead of the web-based signin flow. 1374 // Uses the ClientLogin signin flow instead of the web-based signin flow.
1375 const char kUseClientLoginSigninFlow[] = "use-client-login-signin-flow"; 1375 const char kUseClientLoginSigninFlow[] = "use-client-login-signin-flow";
1376 1376
1377 // Uses experimental simple cache backend if possible.
1378 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend";
1379
1377 // Specifies a custom URL for the server which reports variation data to the 1380 // Specifies a custom URL for the server which reports variation data to the
1378 // client. Specifying this switch enables the Variations service on 1381 // client. Specifying this switch enables the Variations service on
1379 // unofficial builds. See variations_service.cc. 1382 // unofficial builds. See variations_service.cc.
1380 const char kVariationsServerURL[] = "variations-server-url"; 1383 const char kVariationsServerURL[] = "variations-server-url";
1381 1384
1382 // Prints version information and quits. 1385 // Prints version information and quits.
1383 const char kVersion[] = "version"; 1386 const char kVersion[] = "version";
1384 1387
1385 // Requests that Chrome connect to a remote viewer process using an IPC 1388 // Requests that Chrome connect to a remote viewer process using an IPC
1386 // channel of the given name. 1389 // channel of the given name.
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1658 1661
1659 // ----------------------------------------------------------------------------- 1662 // -----------------------------------------------------------------------------
1660 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1663 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1661 // 1664 //
1662 // You were going to just dump your switches here, weren't you? Instead, please 1665 // You were going to just dump your switches here, weren't you? Instead, please
1663 // put them in alphabetical order above, or in order inside the appropriate 1666 // put them in alphabetical order above, or in order inside the appropriate
1664 // ifdef at the bottom. The order should match the header. 1667 // ifdef at the bottom. The order should match the header.
1665 // ----------------------------------------------------------------------------- 1668 // -----------------------------------------------------------------------------
1666 1669
1667 } // namespace switches 1670 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698