| 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 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; | 1063 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
| 1064 | 1064 |
| 1065 // Specifies Android phone page loading progress bar animation. | 1065 // Specifies Android phone page loading progress bar animation. |
| 1066 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1066 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 1067 | 1067 |
| 1068 // Specifies a particular tab management experiment to enable. | 1068 // Specifies a particular tab management experiment to enable. |
| 1069 const char kTabManagementExperimentTypeDisabled[] = | 1069 const char kTabManagementExperimentTypeDisabled[] = |
| 1070 "tab-management-experiment-type-disabled"; | 1070 "tab-management-experiment-type-disabled"; |
| 1071 const char kTabManagementExperimentTypeElderberry[] = | 1071 const char kTabManagementExperimentTypeElderberry[] = |
| 1072 "tab-management-experiment-type-elderberry"; | 1072 "tab-management-experiment-type-elderberry"; |
| 1073 |
| 1074 // Custom WebAPK server URL for the sake of testing. |
| 1075 const char kWebApkServerUrl[] = "webapk-server-url"; |
| 1073 #endif // defined(OS_ANDROID) | 1076 #endif // defined(OS_ANDROID) |
| 1074 | 1077 |
| 1075 #if defined(OS_CHROMEOS) | 1078 #if defined(OS_CHROMEOS) |
| 1076 // Enables native cups integration | 1079 // Enables native cups integration |
| 1077 const char kEnableNativeCups[] = "enable-native-cups"; | 1080 const char kEnableNativeCups[] = "enable-native-cups"; |
| 1078 #endif // defined(OS_CHROMEOS) | 1081 #endif // defined(OS_CHROMEOS) |
| 1079 | 1082 |
| 1080 #if defined(USE_ASH) | 1083 #if defined(USE_ASH) |
| 1081 const char kOpenAsh[] = "open-ash"; | 1084 const char kOpenAsh[] = "open-ash"; |
| 1082 #endif | 1085 #endif |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 | 1321 |
| 1319 // ----------------------------------------------------------------------------- | 1322 // ----------------------------------------------------------------------------- |
| 1320 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1323 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1321 // | 1324 // |
| 1322 // You were going to just dump your switches here, weren't you? Instead, please | 1325 // You were going to just dump your switches here, weren't you? Instead, please |
| 1323 // put them in alphabetical order above, or in order inside the appropriate | 1326 // put them in alphabetical order above, or in order inside the appropriate |
| 1324 // ifdef at the bottom. The order should match the header. | 1327 // ifdef at the bottom. The order should match the header. |
| 1325 // ----------------------------------------------------------------------------- | 1328 // ----------------------------------------------------------------------------- |
| 1326 | 1329 |
| 1327 } // namespace switches | 1330 } // namespace switches |
| OLD | NEW |