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