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 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1328 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; | 1328 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; |
1329 | 1329 |
1330 // Specifies the user data directory, which is where the browser will look for | 1330 // Specifies the user data directory, which is where the browser will look for |
1331 // all of its state. | 1331 // all of its state. |
1332 const char kUserDataDir[] = "user-data-dir"; | 1332 const char kUserDataDir[] = "user-data-dir"; |
1333 | 1333 |
1334 // Uses the GAIA web-based signin flow instead of the native UI signin flow. | 1334 // Uses the GAIA web-based signin flow instead of the native UI signin flow. |
1335 const char kUseWebBasedSigninFlow[] = "use-web-based-signin-flow"; | 1335 const char kUseWebBasedSigninFlow[] = "use-web-based-signin-flow"; |
1336 | 1336 |
1337 // Specifies a custom URL for the server which reports variation data to the | 1337 // Specifies a custom URL for the server which reports variation data to the |
1338 // client. See variations_service.cc. | 1338 // client. Specifying this flag also forces a Variations seed request to the |
Alexei Svitkine (slow)
2013/01/03 20:14:06
I would just say "Specifying this flag enables the
SteveT
2013/01/03 20:35:42
Done.
| |
1339 // URL, even in restricted builds. If no URL is specified, this will use the | |
1340 // default URL, but also force the request. See variations_service.cc. | |
1339 const char kVariationsServerURL[] = "variations-server-url"; | 1341 const char kVariationsServerURL[] = "variations-server-url"; |
1340 | 1342 |
1341 // Prints version information and quits. | 1343 // Prints version information and quits. |
1342 const char kVersion[] = "version"; | 1344 const char kVersion[] = "version"; |
1343 | 1345 |
1344 // Requests that Chrome connect to a remote viewer process using an IPC | 1346 // Requests that Chrome connect to a remote viewer process using an IPC |
1345 // channel of the given name. | 1347 // channel of the given name. |
1346 const char kViewerConnection[] = "viewer-connection"; | 1348 const char kViewerConnection[] = "viewer-connection"; |
1347 | 1349 |
1348 // Cycle through a series of URLs listed in the specified file. | 1350 // Cycle through a series of URLs listed in the specified file. |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1612 | 1614 |
1613 // ----------------------------------------------------------------------------- | 1615 // ----------------------------------------------------------------------------- |
1614 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1616 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1615 // | 1617 // |
1616 // You were going to just dump your switches here, weren't you? Instead, please | 1618 // You were going to just dump your switches here, weren't you? Instead, please |
1617 // put them in alphabetical order above, or in order inside the appropriate | 1619 // put them in alphabetical order above, or in order inside the appropriate |
1618 // ifdef at the bottom. The order should match the header. | 1620 // ifdef at the bottom. The order should match the header. |
1619 // ----------------------------------------------------------------------------- | 1621 // ----------------------------------------------------------------------------- |
1620 | 1622 |
1621 } // namespace switches | 1623 } // namespace switches |
OLD | NEW |