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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 | 341 |
342 // Disable syncing of autofill Profile. | 342 // Disable syncing of autofill Profile. |
343 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile"; | 343 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile"; |
344 | 344 |
345 // Disable syncing of bookmarks. | 345 // Disable syncing of bookmarks. |
346 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; | 346 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; |
347 | 347 |
348 // Disable syncing of extensions. | 348 // Disable syncing of extensions. |
349 const char kDisableSyncExtensions[] = "disable-sync-extensions"; | 349 const char kDisableSyncExtensions[] = "disable-sync-extensions"; |
350 | 350 |
| 351 // Disable syncing browser passwords. |
| 352 const char kDisableSyncPasswords[] = "disable-sync-passwords"; |
| 353 |
351 // Disable syncing of preferences. | 354 // Disable syncing of preferences. |
352 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 355 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
353 | 356 |
354 // Disable syncing of themes. | 357 // Disable syncing of themes. |
355 const char kDisableSyncThemes[] = "disable-sync-themes"; | 358 const char kDisableSyncThemes[] = "disable-sync-themes"; |
356 | 359 |
357 // Disable tabbed options, i.e., DOMUI version of options window. | 360 // Disable tabbed options, i.e., DOMUI version of options window. |
358 const char kDisableTabbedOptions[] = "disable-tabbed-options"; | 361 const char kDisableTabbedOptions[] = "disable-tabbed-options"; |
359 | 362 |
360 // TabCloseableStateWatcher disallows closing of tabs and browsers under certain | 363 // TabCloseableStateWatcher disallows closing of tabs and browsers under certain |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
557 | 560 |
558 // Enables StatsTable, logging statistics to a global named shared memory table. | 561 // Enables StatsTable, logging statistics to a global named shared memory table. |
559 const char kEnableStatsTable[] = "enable-stats-table"; | 562 const char kEnableStatsTable[] = "enable-stats-table"; |
560 | 563 |
561 // Enable syncing browser data to a Google Account. | 564 // Enable syncing browser data to a Google Account. |
562 const char kEnableSync[] = "enable-sync"; | 565 const char kEnableSync[] = "enable-sync"; |
563 | 566 |
564 // Enable syncing browser autofill. | 567 // Enable syncing browser autofill. |
565 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 568 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
566 | 569 |
567 // Enable syncing browser passwords. | |
568 const char kEnableSyncPasswords[] = "enable-sync-passwords"; | |
569 | |
570 // Enable syncing browser sessions. | 570 // Enable syncing browser sessions. |
571 const char kEnableSyncSessions[] = "enable-sync-sessions"; | 571 const char kEnableSyncSessions[] = "enable-sync-sessions"; |
572 | 572 |
573 // Enable syncing browser typed urls. | 573 // Enable syncing browser typed urls. |
574 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; | 574 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; |
575 | 575 |
576 // Enable use of experimental TCP sockets API for sending data in the | 576 // Enable use of experimental TCP sockets API for sending data in the |
577 // SYN packet. | 577 // SYN packet. |
578 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 578 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
579 | 579 |
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1380 | 1380 |
1381 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1383 // | 1383 // |
1384 // You were going to just dump your switches here, weren't you? Instead, | 1384 // You were going to just dump your switches here, weren't you? Instead, |
1385 // please put them in alphabetical order above, or in order inside the | 1385 // please put them in alphabetical order above, or in order inside the |
1386 // appropriate ifdef at the bottom. The order should match the header. | 1386 // appropriate ifdef at the bottom. The order should match the header. |
1387 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
1388 | 1388 |
1389 } // namespace switches | 1389 } // namespace switches |
OLD | NEW |