| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 | 488 |
| 489 // Enable syncing browser data to a Google Account. | 489 // Enable syncing browser data to a Google Account. |
| 490 const char kEnableSync[] = "enable-sync"; | 490 const char kEnableSync[] = "enable-sync"; |
| 491 | 491 |
| 492 // Enable syncing browser autofill. | 492 // Enable syncing browser autofill. |
| 493 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 493 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
| 494 | 494 |
| 495 // Enable sync encryption options. | 495 // Enable sync encryption options. |
| 496 const char kEnableSyncEncryption[] = "enable-sync-encryption"; | 496 const char kEnableSyncEncryption[] = "enable-sync-encryption"; |
| 497 | 497 |
| 498 // Enable OAuth sign-in for sync. |
| 499 const char kEnableSyncOAuth[] = "enable-sync-oauth"; |
| 500 |
| 498 // Enable syncing browser sessions. | 501 // Enable syncing browser sessions. |
| 499 const char kEnableSyncSessions[] = "enable-sync-sessions"; | 502 const char kEnableSyncSessions[] = "enable-sync-sessions"; |
| 500 | 503 |
| 501 // Enables context menu for selecting groups of tabs. | 504 // Enables context menu for selecting groups of tabs. |
| 502 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 505 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
| 503 | 506 |
| 504 // Enable syncing browser typed urls. | 507 // Enable syncing browser typed urls. |
| 505 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; | 508 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; |
| 506 | 509 |
| 507 // Enable syncing browser typed urls. | 510 // Enable syncing browser typed urls. |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1203 | 1206 |
| 1204 // ----------------------------------------------------------------------------- | 1207 // ----------------------------------------------------------------------------- |
| 1205 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1208 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1206 // | 1209 // |
| 1207 // You were going to just dump your switches here, weren't you? Instead, | 1210 // You were going to just dump your switches here, weren't you? Instead, |
| 1208 // please put them in alphabetical order above, or in order inside the | 1211 // please put them in alphabetical order above, or in order inside the |
| 1209 // appropriate ifdef at the bottom. The order should match the header. | 1212 // appropriate ifdef at the bottom. The order should match the header. |
| 1210 // ----------------------------------------------------------------------------- | 1213 // ----------------------------------------------------------------------------- |
| 1211 | 1214 |
| 1212 } // namespace switches | 1215 } // namespace switches |
| OLD | NEW |