| 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. | 372 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. |
| 373 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; | 373 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; |
| 374 | 374 |
| 375 // Enable print preview (work in progress). | 375 // Enable print preview (work in progress). |
| 376 const char kEnablePrintPreview[] = "enable-print-preview"; | 376 const char kEnablePrintPreview[] = "enable-print-preview"; |
| 377 | 377 |
| 378 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra | 378 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra |
| 379 // parameter to indicate if the provider should be the default. | 379 // parameter to indicate if the provider should be the default. |
| 380 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; | 380 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; |
| 381 | 381 |
| 382 // Enables speech input. |
| 383 const char kEnableSpeechInput[] = "enable-speech-input"; |
| 384 |
| 382 // Enables StatsTable, logging statistics to a global named shared memory table. | 385 // Enables StatsTable, logging statistics to a global named shared memory table. |
| 383 const char kEnableStatsTable[] = "enable-stats-table"; | 386 const char kEnableStatsTable[] = "enable-stats-table"; |
| 384 | 387 |
| 385 // Enable syncing browser data to a Google Account. | 388 // Enable syncing browser data to a Google Account. |
| 386 const char kEnableSync[] = "enable-sync"; | 389 const char kEnableSync[] = "enable-sync"; |
| 387 | 390 |
| 388 // Enable syncing browser autofill. | 391 // Enable syncing browser autofill. |
| 389 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 392 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
| 390 | 393 |
| 391 // Enable syncing browser bookmarks. | 394 // Enable syncing browser bookmarks. |
| (...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 | 1133 |
| 1131 // ----------------------------------------------------------------------------- | 1134 // ----------------------------------------------------------------------------- |
| 1132 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1135 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1133 // | 1136 // |
| 1134 // You were going to just dump your switches here, weren't you? Instead, | 1137 // You were going to just dump your switches here, weren't you? Instead, |
| 1135 // please put them in alphabetical order above, or in order inside the | 1138 // please put them in alphabetical order above, or in order inside the |
| 1136 // appropriate ifdef at the bottom. The order should match the header. | 1139 // appropriate ifdef at the bottom. The order should match the header. |
| 1137 // ----------------------------------------------------------------------------- | 1140 // ----------------------------------------------------------------------------- |
| 1138 | 1141 |
| 1139 } // namespace switches | 1142 } // namespace switches |
| OLD | NEW |