 Chromium Code Reviews
 Chromium Code Reviews Issue 12684010:
  Add simple cache backend experiment hidden behind a flag.  (Closed) 
  Base URL: http://git.chromium.org/chromium/src.git@master
    
  
    Issue 12684010:
  Add simple cache backend experiment hidden behind a flag.  (Closed) 
  Base URL: http://git.chromium.org/chromium/src.git@master| OLD | NEW | 
|---|---|
| 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 Loading... | |
| 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 experiental simple cache backend if possible. | |
| 
SteveT
2013/03/15 14:07:05
experiental -> experimental
 
pasko-google - do not use
2013/03/15 15:36:28
Done.
 | |
| 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 Loading... | |
| 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 | 
| OLD | NEW |