| 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; | 468 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; |
| 469 | 469 |
| 470 // Enables the pre- and auto-login features. When a user signs in to sync, the | 470 // Enables the pre- and auto-login features. When a user signs in to sync, the |
| 471 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 471 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| 472 // GAIA login page, an info bar can help the user login. | 472 // GAIA login page, an info bar can help the user login. |
| 473 const char kEnableAutologin[] = "enable-autologin"; | 473 const char kEnableAutologin[] = "enable-autologin"; |
| 474 | 474 |
| 475 // Enables the benchmarking extensions. | 475 // Enables the benchmarking extensions. |
| 476 const char kEnableBenchmarking[] = "enable-benchmarking"; | 476 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 477 | 477 |
| 478 // Enables making all extensions have a browser action. | |
| 479 const char kEnableBrowserActionsForAll[] = "enable-browser-actions-for-all"; | |
| 480 | |
| 481 // Enables the bundled PPAPI version of Flash. | 478 // Enables the bundled PPAPI version of Flash. |
| 482 const char kEnableBundledPpapiFlash[] = "enable-bundled-ppapi-flash"; | 479 const char kEnableBundledPpapiFlash[] = "enable-bundled-ppapi-flash"; |
| 483 | 480 |
| 484 // Enables the new ClientOAuth signin flow for connecting a profile a Google | 481 // Enables the new ClientOAuth signin flow for connecting a profile a Google |
| 485 // account. When disabled, Chrome will use the ClientLogin flow instead. | 482 // account. When disabled, Chrome will use the ClientLogin flow instead. |
| 486 const char kEnableClientOAuthSignin[] = "enable-client-oauth-signin"; | 483 const char kEnableClientOAuthSignin[] = "enable-client-oauth-signin"; |
| 487 | 484 |
| 488 // Enables Chrome To Mobile. | 485 // Enables Chrome To Mobile. |
| 489 // This switch is not currently respected; use the disable switch instead. | 486 // This switch is not currently respected; use the disable switch instead. |
| 490 const char kEnableChromeToMobile[] = "enable-chrome-to-mobile"; | 487 const char kEnableChromeToMobile[] = "enable-chrome-to-mobile"; |
| (...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1449 | 1446 |
| 1450 // ----------------------------------------------------------------------------- | 1447 // ----------------------------------------------------------------------------- |
| 1451 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1448 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1452 // | 1449 // |
| 1453 // You were going to just dump your switches here, weren't you? Instead, please | 1450 // You were going to just dump your switches here, weren't you? Instead, please |
| 1454 // put them in alphabetical order above, or in order inside the appropriate | 1451 // put them in alphabetical order above, or in order inside the appropriate |
| 1455 // ifdef at the bottom. The order should match the header. | 1452 // ifdef at the bottom. The order should match the header. |
| 1456 // ----------------------------------------------------------------------------- | 1453 // ----------------------------------------------------------------------------- |
| 1457 | 1454 |
| 1458 } // namespace switches | 1455 } // namespace switches |
| OLD | NEW |