| 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 #include "printing/features/features.h" | 10 #include "printing/features/features.h" |
| (...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 const char kEnableContextualSearchContextualCardsBarIntegration[] = | 1029 const char kEnableContextualSearchContextualCardsBarIntegration[] = |
| 1030 "cs-contextual-cards-bar-integration"; | 1030 "cs-contextual-cards-bar-integration"; |
| 1031 | 1031 |
| 1032 // Enables chrome hosted mode for Android. | 1032 // Enables chrome hosted mode for Android. |
| 1033 const char kEnableHostedMode[] = "enable-hosted-mode"; | 1033 const char kEnableHostedMode[] = "enable-hosted-mode"; |
| 1034 | 1034 |
| 1035 // Enables a hung renderer InfoBar allowing the user to close or wait on | 1035 // Enables a hung renderer InfoBar allowing the user to close or wait on |
| 1036 // unresponsive web content. | 1036 // unresponsive web content. |
| 1037 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; | 1037 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; |
| 1038 | 1038 |
| 1039 // Enables Play Store to install WebAPKs generated by "Add to Home screen" in |
| 1040 // the app menu. |
| 1041 const char kEnablePlayInstallWebApk[] = "enable-play-install-improved-a2hs"; |
| 1042 |
| 1039 // Enables "Add to Home screen" in the app menu to generate WebAPKs. | 1043 // Enables "Add to Home screen" in the app menu to generate WebAPKs. |
| 1040 const char kEnableWebApk[] = "enable-improved-a2hs"; | 1044 const char kEnableWebApk[] = "enable-improved-a2hs"; |
| 1041 | 1045 |
| 1042 // Forces the update menu badge to show. | 1046 // Forces the update menu badge to show. |
| 1043 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge"; | 1047 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge"; |
| 1044 | 1048 |
| 1045 // Forces the update menu item to show. | 1049 // Forces the update menu item to show. |
| 1046 const char kForceShowUpdateMenuItem[] = "force-show-update-menu-item"; | 1050 const char kForceShowUpdateMenuItem[] = "force-show-update-menu-item"; |
| 1047 | 1051 |
| 1048 // Forces a custom summary to be displayed below the update menu item. | 1052 // Forces a custom summary to be displayed below the update menu item. |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1317 | 1321 |
| 1318 // ----------------------------------------------------------------------------- | 1322 // ----------------------------------------------------------------------------- |
| 1319 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1323 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1320 // | 1324 // |
| 1321 // You were going to just dump your switches here, weren't you? Instead, please | 1325 // You were going to just dump your switches here, weren't you? Instead, please |
| 1322 // put them in alphabetical order above, or in order inside the appropriate | 1326 // put them in alphabetical order above, or in order inside the appropriate |
| 1323 // ifdef at the bottom. The order should match the header. | 1327 // ifdef at the bottom. The order should match the header. |
| 1324 // ----------------------------------------------------------------------------- | 1328 // ----------------------------------------------------------------------------- |
| 1325 | 1329 |
| 1326 } // namespace switches | 1330 } // namespace switches |
| OLD | NEW |