| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 // Enables Contextual Search. | 1036 // Enables Contextual Search. |
| 1037 const char kEnableContextualSearch[] = "enable-contextual-search"; | 1037 const char kEnableContextualSearch[] = "enable-contextual-search"; |
| 1038 | 1038 |
| 1039 // Enables chrome hosted mode for Android. | 1039 // Enables chrome hosted mode for Android. |
| 1040 const char kEnableHostedMode[] = "enable-hosted-mode"; | 1040 const char kEnableHostedMode[] = "enable-hosted-mode"; |
| 1041 | 1041 |
| 1042 // Enables a hung renderer InfoBar allowing the user to close or wait on | 1042 // Enables a hung renderer InfoBar allowing the user to close or wait on |
| 1043 // unresponsive web content. | 1043 // unresponsive web content. |
| 1044 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; | 1044 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; |
| 1045 | 1045 |
| 1046 // Enable theme colors in the tab switcher. | |
| 1047 const char kEnableTabSwitcherThemeColors[] = "enable-tab-switcher-theme-colors"; | |
| 1048 | |
| 1049 // Enable VR UI if supported. | 1046 // Enable VR UI if supported. |
| 1050 const char kEnableVrShell[] = "enable-vr-shell"; | 1047 const char kEnableVrShell[] = "enable-vr-shell"; |
| 1051 | 1048 |
| 1052 // Enables "Add to Home screen" in the app menu to generate WebAPKs. | 1049 // Enables "Add to Home screen" in the app menu to generate WebAPKs. |
| 1053 const char kEnableWebApk[] = "enable-webapk"; | 1050 const char kEnableWebApk[] = "enable-webapk"; |
| 1054 | 1051 |
| 1055 // Forces the update menu badge to show. | 1052 // Forces the update menu badge to show. |
| 1056 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge"; | 1053 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge"; |
| 1057 | 1054 |
| 1058 // Forces the update menu item to show. | 1055 // Forces the update menu item to show. |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1320 | 1317 |
| 1321 // ----------------------------------------------------------------------------- | 1318 // ----------------------------------------------------------------------------- |
| 1322 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1319 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1323 // | 1320 // |
| 1324 // You were going to just dump your switches here, weren't you? Instead, please | 1321 // You were going to just dump your switches here, weren't you? Instead, please |
| 1325 // put them in alphabetical order above, or in order inside the appropriate | 1322 // put them in alphabetical order above, or in order inside the appropriate |
| 1326 // ifdef at the bottom. The order should match the header. | 1323 // ifdef at the bottom. The order should match the header. |
| 1327 // ----------------------------------------------------------------------------- | 1324 // ----------------------------------------------------------------------------- |
| 1328 | 1325 |
| 1329 } // namespace switches | 1326 } // namespace switches |
| OLD | NEW |