| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 // Enable print preview (work in progress). | 589 // Enable print preview (work in progress). |
| 590 const char kEnablePrintPreview[] = "enable-print-preview"; | 590 const char kEnablePrintPreview[] = "enable-print-preview"; |
| 591 | 591 |
| 592 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra | 592 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra |
| 593 // parameter to indicate if the provider should be the default. | 593 // parameter to indicate if the provider should be the default. |
| 594 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; | 594 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; |
| 595 | 595 |
| 596 // Enables 0-RTT HTTPS handshakes. | 596 // Enables 0-RTT HTTPS handshakes. |
| 597 const char kEnableSnapStart[] = "enable-snap-start"; | 597 const char kEnableSnapStart[] = "enable-snap-start"; |
| 598 | 598 |
| 599 // Enables speech input. | |
| 600 const char kEnableSpeechInput[] = "enable-speech-input"; | |
| 601 | |
| 602 // Enables StatsTable, logging statistics to a global named shared memory table. | 599 // Enables StatsTable, logging statistics to a global named shared memory table. |
| 603 const char kEnableStatsTable[] = "enable-stats-table"; | 600 const char kEnableStatsTable[] = "enable-stats-table"; |
| 604 | 601 |
| 605 // Enable syncing browser data to a Google Account. | 602 // Enable syncing browser data to a Google Account. |
| 606 const char kEnableSync[] = "enable-sync"; | 603 const char kEnableSync[] = "enable-sync"; |
| 607 | 604 |
| 608 // Enable syncing browser autofill. | 605 // Enable syncing browser autofill. |
| 609 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 606 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
| 610 | 607 |
| 611 // Enable syncing browser sessions. | 608 // Enable syncing browser sessions. |
| (...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1457 | 1454 |
| 1458 // ----------------------------------------------------------------------------- | 1455 // ----------------------------------------------------------------------------- |
| 1459 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1456 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1460 // | 1457 // |
| 1461 // You were going to just dump your switches here, weren't you? Instead, | 1458 // You were going to just dump your switches here, weren't you? Instead, |
| 1462 // please put them in alphabetical order above, or in order inside the | 1459 // please put them in alphabetical order above, or in order inside the |
| 1463 // appropriate ifdef at the bottom. The order should match the header. | 1460 // appropriate ifdef at the bottom. The order should match the header. |
| 1464 // ----------------------------------------------------------------------------- | 1461 // ----------------------------------------------------------------------------- |
| 1465 | 1462 |
| 1466 } // namespace switches | 1463 } // namespace switches |
| OLD | NEW |