| 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 | 386 |
| 387 // Disables syncing of extensions. | 387 // Disables syncing of extensions. |
| 388 const char kDisableSyncExtensions[] = "disable-sync-extensions"; | 388 const char kDisableSyncExtensions[] = "disable-sync-extensions"; |
| 389 | 389 |
| 390 // Disables syncing browser passwords. | 390 // Disables syncing browser passwords. |
| 391 const char kDisableSyncPasswords[] = "disable-sync-passwords"; | 391 const char kDisableSyncPasswords[] = "disable-sync-passwords"; |
| 392 | 392 |
| 393 // Disables syncing of preferences. | 393 // Disables syncing of preferences. |
| 394 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 394 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
| 395 | 395 |
| 396 // Enable syncing custom search engines. | 396 // Disable syncing custom search engines. |
| 397 const char kEnableSyncSearchEngines[] = "enable-sync-search-engines"; | 397 const char kDisableSyncSearchEngines[] = "disable-sync-search-engines"; |
| 398 | 398 |
| 399 // Disables syncing of themes. | 399 // Disables syncing of themes. |
| 400 const char kDisableSyncThemes[] = "disable-sync-themes"; | 400 const char kDisableSyncThemes[] = "disable-sync-themes"; |
| 401 | 401 |
| 402 // Disables syncing browser typed urls. | 402 // Disables syncing browser typed urls. |
| 403 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; | 403 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; |
| 404 | 404 |
| 405 // Disables TLS v1.0 (usually for testing purposes). | 405 // Disables TLS v1.0 (usually for testing purposes). |
| 406 const char kDisableTLS1[] = "disable-tls1"; | 406 const char kDisableTLS1[] = "disable-tls1"; |
| 407 | 407 |
| (...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1433 | 1433 |
| 1434 // ----------------------------------------------------------------------------- | 1434 // ----------------------------------------------------------------------------- |
| 1435 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1435 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1436 // | 1436 // |
| 1437 // You were going to just dump your switches here, weren't you? Instead, please | 1437 // You were going to just dump your switches here, weren't you? Instead, please |
| 1438 // put them in alphabetical order above, or in order inside the appropriate | 1438 // put them in alphabetical order above, or in order inside the appropriate |
| 1439 // ifdef at the bottom. The order should match the header. | 1439 // ifdef at the bottom. The order should match the header. |
| 1440 // ----------------------------------------------------------------------------- | 1440 // ----------------------------------------------------------------------------- |
| 1441 | 1441 |
| 1442 } // namespace switches | 1442 } // namespace switches |
| OLD | NEW |