OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 // Enable print preview (work in progress). | 551 // Enable print preview (work in progress). |
552 const char kEnablePrintPreview[] = "enable-print-preview"; | 552 const char kEnablePrintPreview[] = "enable-print-preview"; |
553 | 553 |
554 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra | 554 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra |
555 // parameter to indicate if the provider should be the default. | 555 // parameter to indicate if the provider should be the default. |
556 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; | 556 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; |
557 | 557 |
558 // Enables 0-RTT HTTPS handshakes. | 558 // Enables 0-RTT HTTPS handshakes. |
559 const char kEnableSnapStart[] = "enable-snap-start"; | 559 const char kEnableSnapStart[] = "enable-snap-start"; |
560 | 560 |
| 561 // Enables speech input. |
| 562 const char kEnableSpeechInput[] = "enable-speech-input"; |
| 563 |
561 // Enables StatsTable, logging statistics to a global named shared memory table. | 564 // Enables StatsTable, logging statistics to a global named shared memory table. |
562 const char kEnableStatsTable[] = "enable-stats-table"; | 565 const char kEnableStatsTable[] = "enable-stats-table"; |
563 | 566 |
564 // Enable syncing browser data to a Google Account. | 567 // Enable syncing browser data to a Google Account. |
565 const char kEnableSync[] = "enable-sync"; | 568 const char kEnableSync[] = "enable-sync"; |
566 | 569 |
567 // Enable syncing browser autofill. | 570 // Enable syncing browser autofill. |
568 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 571 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
569 | 572 |
570 // Enable syncing browser sessions. | 573 // Enable syncing browser sessions. |
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1379 | 1382 |
1380 // ----------------------------------------------------------------------------- | 1383 // ----------------------------------------------------------------------------- |
1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1384 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1382 // | 1385 // |
1383 // You were going to just dump your switches here, weren't you? Instead, | 1386 // You were going to just dump your switches here, weren't you? Instead, |
1384 // please put them in alphabetical order above, or in order inside the | 1387 // please put them in alphabetical order above, or in order inside the |
1385 // appropriate ifdef at the bottom. The order should match the header. | 1388 // appropriate ifdef at the bottom. The order should match the header. |
1386 // ----------------------------------------------------------------------------- | 1389 // ----------------------------------------------------------------------------- |
1387 | 1390 |
1388 } // namespace switches | 1391 } // namespace switches |
OLD | NEW |