| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 2160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2171 // Chrome home flags | 2171 // Chrome home flags |
| 2172 | 2172 |
| 2173 #if defined(OS_ANDROID) | 2173 #if defined(OS_ANDROID) |
| 2174 | 2174 |
| 2175 // The name of the Chrome Home experiment in about:flags. | 2175 // The name of the Chrome Home experiment in about:flags. |
| 2176 extern const char kChromeHomeName[]; | 2176 extern const char kChromeHomeName[]; |
| 2177 | 2177 |
| 2178 // Description of the Chrome Home experiment in about:flags. | 2178 // Description of the Chrome Home experiment in about:flags. |
| 2179 extern const char kChromeHomeDescription[]; | 2179 extern const char kChromeHomeDescription[]; |
| 2180 | 2180 |
| 2181 // The name of the Chrome Home expand button experiment in about:flags. |
| 2182 extern const char kChromeHomeExpandButtonName[]; |
| 2183 |
| 2184 // Description of the Chrome Home expand button experiment in about:flags. |
| 2185 extern const char kChromeHomeExpandButtonDescription[]; |
| 2186 |
| 2181 #endif // defined(OS_ANDROID) | 2187 #endif // defined(OS_ANDROID) |
| 2182 | 2188 |
| 2183 // In-Product Help flags | 2189 // In-Product Help flags |
| 2184 | 2190 |
| 2185 #if defined(OS_ANDROID) | 2191 #if defined(OS_ANDROID) |
| 2186 | 2192 |
| 2187 // The name of the In-Product Help demo mode in about:flags. | 2193 // The name of the In-Product Help demo mode in about:flags. |
| 2188 extern const char kEnableIphDemoMode[]; | 2194 extern const char kEnableIphDemoMode[]; |
| 2189 | 2195 |
| 2190 // Description of the In-Product Help demo mode in about:flags. | 2196 // Description of the In-Product Help demo mode in about:flags. |
| (...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3312 // current URL. | 3318 // current URL. |
| 3313 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3319 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 3314 | 3320 |
| 3315 // Description of the about: flag for displaying the title of the omnibox match | 3321 // Description of the about: flag for displaying the title of the omnibox match |
| 3316 // for current URL. | 3322 // for current URL. |
| 3317 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3323 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 3318 | 3324 |
| 3319 } // namespace flag_descriptions | 3325 } // namespace flag_descriptions |
| 3320 | 3326 |
| 3321 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3327 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |