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 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1108 const char kTabManagementExperimentTypeBasil[] = | 1108 const char kTabManagementExperimentTypeBasil[] = |
1109 "tab-management-experiment-type-basil"; | 1109 "tab-management-experiment-type-basil"; |
1110 const char kTabManagementExperimentTypeChive[] = | 1110 const char kTabManagementExperimentTypeChive[] = |
1111 "tab-management-experiment-type-chive"; | 1111 "tab-management-experiment-type-chive"; |
1112 const char kTabManagementExperimentTypeDill[] = | 1112 const char kTabManagementExperimentTypeDill[] = |
1113 "tab-management-experiment-type-dill"; | 1113 "tab-management-experiment-type-dill"; |
1114 const char kTabManagementExperimentTypeDisabled[] = | 1114 const char kTabManagementExperimentTypeDisabled[] = |
1115 "tab-management-experiment-type-disabled"; | 1115 "tab-management-experiment-type-disabled"; |
1116 const char kTabManagementExperimentTypeElderberry[] = | 1116 const char kTabManagementExperimentTypeElderberry[] = |
1117 "tab-management-experiment-type-elderberry"; | 1117 "tab-management-experiment-type-elderberry"; |
| 1118 |
| 1119 // Custom WebAPK server URL for the sake of testing. |
| 1120 const char kWebApkServerUrl[] = "webapk-server-url"; |
1118 #endif // defined(OS_ANDROID) | 1121 #endif // defined(OS_ANDROID) |
1119 | 1122 |
1120 #if defined(OS_CHROMEOS) | 1123 #if defined(OS_CHROMEOS) |
1121 // Enables the intent picker so the user can handle URL links with ARC apps. | 1124 // Enables the intent picker so the user can handle URL links with ARC apps. |
1122 const char kEnableIntentPicker[] = "enable-intent-picker"; | 1125 const char kEnableIntentPicker[] = "enable-intent-picker"; |
1123 | 1126 |
1124 // Enables native cups integration | 1127 // Enables native cups integration |
1125 const char kEnableNativeCups[] = "enable-native-cups"; | 1128 const char kEnableNativeCups[] = "enable-native-cups"; |
1126 #endif // defined(OS_CHROMEOS) | 1129 #endif // defined(OS_CHROMEOS) |
1127 | 1130 |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1337 | 1340 |
1338 // ----------------------------------------------------------------------------- | 1341 // ----------------------------------------------------------------------------- |
1339 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1342 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1340 // | 1343 // |
1341 // You were going to just dump your switches here, weren't you? Instead, please | 1344 // You were going to just dump your switches here, weren't you? Instead, please |
1342 // put them in alphabetical order above, or in order inside the appropriate | 1345 // put them in alphabetical order above, or in order inside the appropriate |
1343 // ifdef at the bottom. The order should match the header. | 1346 // ifdef at the bottom. The order should match the header. |
1344 // ----------------------------------------------------------------------------- | 1347 // ----------------------------------------------------------------------------- |
1345 | 1348 |
1346 } // namespace switches | 1349 } // namespace switches |
OLD | NEW |