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