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