| 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 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 | 914 |
| 915 // Forces a custom summary to be displayed below the update menu item. | 915 // Forces a custom summary to be displayed below the update menu item. |
| 916 const char kForceShowUpdateMenuItemCustomSummary[] = "custom_summary"; | 916 const char kForceShowUpdateMenuItemCustomSummary[] = "custom_summary"; |
| 917 | 917 |
| 918 // Sets the market URL for Chrome for use in testing. | 918 // Sets the market URL for Chrome for use in testing. |
| 919 const char kMarketUrlForTesting[] = "market-url-for-testing"; | 919 const char kMarketUrlForTesting[] = "market-url-for-testing"; |
| 920 | 920 |
| 921 // Switch to an existing tab for a suggestion opened from the New Tab Page. | 921 // Switch to an existing tab for a suggestion opened from the New Tab Page. |
| 922 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; | 922 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
| 923 | 923 |
| 924 // Specifies a particular hint text to show on omnibox url bar. |
| 925 const char kOmniboxPlaceholderExperimentSwitch[] = |
| 926 "omnibox-placeholder-experiment"; |
| 927 |
| 924 // Specifies Android phone page loading progress bar animation. | 928 // Specifies Android phone page loading progress bar animation. |
| 925 const char kProgressBarAnimation[] = "progress-bar-animation"; | 929 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 926 | 930 |
| 927 // Specifies a particular tab management experiment to enable. | 931 // Specifies a particular tab management experiment to enable. |
| 928 const char kTabManagementExperimentTypeDisabled[] = | 932 const char kTabManagementExperimentTypeDisabled[] = |
| 929 "tab-management-experiment-type-disabled"; | 933 "tab-management-experiment-type-disabled"; |
| 930 const char kTabManagementExperimentTypeElderberry[] = | 934 const char kTabManagementExperimentTypeElderberry[] = |
| 931 "tab-management-experiment-type-elderberry"; | 935 "tab-management-experiment-type-elderberry"; |
| 932 | 936 |
| 933 // Custom WebAPK server URL for the sake of testing. | 937 // Custom WebAPK server URL for the sake of testing. |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1190 | 1194 |
| 1191 // ----------------------------------------------------------------------------- | 1195 // ----------------------------------------------------------------------------- |
| 1192 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1196 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1193 // | 1197 // |
| 1194 // You were going to just dump your switches here, weren't you? Instead, please | 1198 // You were going to just dump your switches here, weren't you? Instead, please |
| 1195 // put them in alphabetical order above, or in order inside the appropriate | 1199 // put them in alphabetical order above, or in order inside the appropriate |
| 1196 // ifdef at the bottom. The order should match the header. | 1200 // ifdef at the bottom. The order should match the header. |
| 1197 // ----------------------------------------------------------------------------- | 1201 // ----------------------------------------------------------------------------- |
| 1198 | 1202 |
| 1199 } // namespace switches | 1203 } // namespace switches |
| OLD | NEW |