| 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 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1088 // Sets the market URL for Chrome for use in testing. | 1088 // Sets the market URL for Chrome for use in testing. |
| 1089 const char kMarketUrlForTesting[] = "market-url-for-testing"; | 1089 const char kMarketUrlForTesting[] = "market-url-for-testing"; |
| 1090 | 1090 |
| 1091 // Switch to an existing tab for a suggestion opened from the New Tab Page. | 1091 // Switch to an existing tab for a suggestion opened from the New Tab Page. |
| 1092 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; | 1092 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
| 1093 | 1093 |
| 1094 // Specifies Android phone page loading progress bar animation. | 1094 // Specifies Android phone page loading progress bar animation. |
| 1095 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1095 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 1096 | 1096 |
| 1097 // Specifies a particular tab management experiment to enable. | 1097 // Specifies a particular tab management experiment to enable. |
| 1098 const char kTabManagementExperimentTypeAnise[] = | |
| 1099 "tab-management-experiment-type-anise"; | |
| 1100 const char kTabManagementExperimentTypeBasil[] = | |
| 1101 "tab-management-experiment-type-basil"; | |
| 1102 const char kTabManagementExperimentTypeChive[] = | |
| 1103 "tab-management-experiment-type-chive"; | |
| 1104 const char kTabManagementExperimentTypeDill[] = | |
| 1105 "tab-management-experiment-type-dill"; | |
| 1106 const char kTabManagementExperimentTypeDisabled[] = | 1098 const char kTabManagementExperimentTypeDisabled[] = |
| 1107 "tab-management-experiment-type-disabled"; | 1099 "tab-management-experiment-type-disabled"; |
| 1108 const char kTabManagementExperimentTypeElderberry[] = | 1100 const char kTabManagementExperimentTypeElderberry[] = |
| 1109 "tab-management-experiment-type-elderberry"; | 1101 "tab-management-experiment-type-elderberry"; |
| 1110 | 1102 |
| 1111 // Custom WebAPK server URL for the sake of testing. | 1103 // Custom WebAPK server URL for the sake of testing. |
| 1112 const char kWebApkServerUrl[] = "webapk-server-url"; | 1104 const char kWebApkServerUrl[] = "webapk-server-url"; |
| 1113 #endif // defined(OS_ANDROID) | 1105 #endif // defined(OS_ANDROID) |
| 1114 | 1106 |
| 1115 #if defined(OS_CHROMEOS) | 1107 #if defined(OS_CHROMEOS) |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1346 | 1338 |
| 1347 // ----------------------------------------------------------------------------- | 1339 // ----------------------------------------------------------------------------- |
| 1348 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1340 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1349 // | 1341 // |
| 1350 // You were going to just dump your switches here, weren't you? Instead, please | 1342 // You were going to just dump your switches here, weren't you? Instead, please |
| 1351 // put them in alphabetical order above, or in order inside the appropriate | 1343 // put them in alphabetical order above, or in order inside the appropriate |
| 1352 // ifdef at the bottom. The order should match the header. | 1344 // ifdef at the bottom. The order should match the header. |
| 1353 // ----------------------------------------------------------------------------- | 1345 // ----------------------------------------------------------------------------- |
| 1354 | 1346 |
| 1355 } // namespace switches | 1347 } // namespace switches |
| OLD | NEW |