| 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 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1086 const char kTabManagementExperimentTypeBasil[] = | 1086 const char kTabManagementExperimentTypeBasil[] = |
| 1087 "tab-management-experiment-type-basil"; | 1087 "tab-management-experiment-type-basil"; |
| 1088 const char kTabManagementExperimentTypeChive[] = | 1088 const char kTabManagementExperimentTypeChive[] = |
| 1089 "tab-management-experiment-type-chive"; | 1089 "tab-management-experiment-type-chive"; |
| 1090 const char kTabManagementExperimentTypeDill[] = | 1090 const char kTabManagementExperimentTypeDill[] = |
| 1091 "tab-management-experiment-type-dill"; | 1091 "tab-management-experiment-type-dill"; |
| 1092 const char kTabManagementExperimentTypeDisabled[] = | 1092 const char kTabManagementExperimentTypeDisabled[] = |
| 1093 "tab-management-experiment-type-disabled"; | 1093 "tab-management-experiment-type-disabled"; |
| 1094 const char kTabManagementExperimentTypeElderberry[] = | 1094 const char kTabManagementExperimentTypeElderberry[] = |
| 1095 "tab-management-experiment-type-elderberry"; | 1095 "tab-management-experiment-type-elderberry"; |
| 1096 |
| 1097 // Custom WebAPK server URL for the sake of testing. |
| 1098 const char kWebApkServerUrl[] = "webapk-server-url"; |
| 1096 #endif // defined(OS_ANDROID) | 1099 #endif // defined(OS_ANDROID) |
| 1097 | 1100 |
| 1098 #if defined(OS_CHROMEOS) | 1101 #if defined(OS_CHROMEOS) |
| 1099 // Enables the intent picker so the user can handle URL links with ARC apps. | 1102 // Enables the intent picker so the user can handle URL links with ARC apps. |
| 1100 const char kEnableIntentPicker[] = "enable-intent-picker"; | 1103 const char kEnableIntentPicker[] = "enable-intent-picker"; |
| 1101 | 1104 |
| 1102 // Enables native cups integration | 1105 // Enables native cups integration |
| 1103 const char kEnableNativeCups[] = "enable-native-cups"; | 1106 const char kEnableNativeCups[] = "enable-native-cups"; |
| 1104 #endif // defined(OS_CHROMEOS) | 1107 #endif // defined(OS_CHROMEOS) |
| 1105 | 1108 |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1315 | 1318 |
| 1316 // ----------------------------------------------------------------------------- | 1319 // ----------------------------------------------------------------------------- |
| 1317 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1320 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1318 // | 1321 // |
| 1319 // You were going to just dump your switches here, weren't you? Instead, please | 1322 // You were going to just dump your switches here, weren't you? Instead, please |
| 1320 // put them in alphabetical order above, or in order inside the appropriate | 1323 // put them in alphabetical order above, or in order inside the appropriate |
| 1321 // ifdef at the bottom. The order should match the header. | 1324 // ifdef at the bottom. The order should match the header. |
| 1322 // ----------------------------------------------------------------------------- | 1325 // ----------------------------------------------------------------------------- |
| 1323 | 1326 |
| 1324 } // namespace switches | 1327 } // namespace switches |
| OLD | NEW |