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 sessions. | 489 // Enable syncing browser sessions. |
490 const char kEnableSyncSessions[] = "enable-sync-sessions"; | 490 const char kEnableSyncSessions[] = "enable-sync-sessions"; |
491 | 491 |
492 // Enables context menu for selecting groups of tabs. | 492 // Enables context menu for selecting groups of tabs. |
493 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 493 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
494 | 494 |
495 // Enable syncing browser typed urls. | 495 // Enable syncing browser typed urls. |
496 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; | 496 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; |
497 | 497 |
| 498 // Enable syncing browser typed urls. |
| 499 const char kEnableSyncedBookmarksFolder[] = "enable-synced-bookmarks-folder"; |
| 500 |
498 // Enable use of experimental TCP sockets API for sending data in the | 501 // Enable use of experimental TCP sockets API for sending data in the |
499 // SYN packet. | 502 // SYN packet. |
500 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 503 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
501 | 504 |
502 // Enables the option to show tabs as a vertical stack down the side of the | 505 // Enables the option to show tabs as a vertical stack down the side of the |
503 // browser window. | 506 // browser window. |
504 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; | 507 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; |
505 | 508 |
506 // Spawn threads to watch for excessive delays in specified message loops. | 509 // Spawn threads to watch for excessive delays in specified message loops. |
507 // User should set breakpoints on Alarm() to examine problematic thread. | 510 // User should set breakpoints on Alarm() to examine problematic thread. |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1174 | 1177 |
1175 // ----------------------------------------------------------------------------- | 1178 // ----------------------------------------------------------------------------- |
1176 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1179 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1177 // | 1180 // |
1178 // You were going to just dump your switches here, weren't you? Instead, | 1181 // You were going to just dump your switches here, weren't you? Instead, |
1179 // please put them in alphabetical order above, or in order inside the | 1182 // please put them in alphabetical order above, or in order inside the |
1180 // appropriate ifdef at the bottom. The order should match the header. | 1183 // appropriate ifdef at the bottom. The order should match the header. |
1181 // ----------------------------------------------------------------------------- | 1184 // ----------------------------------------------------------------------------- |
1182 | 1185 |
1183 } // namespace switches | 1186 } // namespace switches |
OLD | NEW |