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