| 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 | 277 |
| 278 // Enable syncing browser data to a Google Account. | 278 // Enable syncing browser data to a Google Account. |
| 279 const char kEnableSync[] = "enable-sync"; | 279 const char kEnableSync[] = "enable-sync"; |
| 280 | 280 |
| 281 // Enable syncing browser bookmarks. | 281 // Enable syncing browser bookmarks. |
| 282 const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; | 282 const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; |
| 283 | 283 |
| 284 // Enable syncing browser preferences. | 284 // Enable syncing browser preferences. |
| 285 const char kEnableSyncPreferences[] = "enable-sync-preferences"; | 285 const char kEnableSyncPreferences[] = "enable-sync-preferences"; |
| 286 | 286 |
| 287 // Enable the tabbed bookmark manager |
| 288 const char kEnableTabbedBookmarkManager[] = "enable-tabbed-bookmark-manager"; |
| 289 |
| 287 // Whether the multiple profiles feature based on the user-data-dir flag is | 290 // Whether the multiple profiles feature based on the user-data-dir flag is |
| 288 // enabled or not. | 291 // enabled or not. |
| 289 const char kEnableUserDataDirProfiles[] = "enable-udd-profiles"; | 292 const char kEnableUserDataDirProfiles[] = "enable-udd-profiles"; |
| 290 | 293 |
| 291 // Enables the option to show tabs as a vertical stack down the side of the | 294 // Enables the option to show tabs as a vertical stack down the side of the |
| 292 // browser window. | 295 // browser window. |
| 293 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; | 296 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; |
| 294 | 297 |
| 295 // Enables video layering where video is rendered as a separate layer outside | 298 // Enables video layering where video is rendered as a separate layer outside |
| 296 // of the backing store. | 299 // of the backing store. |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 | 826 |
| 824 // ----------------------------------------------------------------------------- | 827 // ----------------------------------------------------------------------------- |
| 825 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 828 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 826 // | 829 // |
| 827 // You were going to just dump your switches here, weren't you? Instead, | 830 // You were going to just dump your switches here, weren't you? Instead, |
| 828 // please put them in alphabetical order above, or in order inside the | 831 // please put them in alphabetical order above, or in order inside the |
| 829 // appropriate ifdef at the bottom. The order should match the header. | 832 // appropriate ifdef at the bottom. The order should match the header. |
| 830 // ----------------------------------------------------------------------------- | 833 // ----------------------------------------------------------------------------- |
| 831 | 834 |
| 832 } // namespace switches | 835 } // namespace switches |
| OLD | NEW |