Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2903293002: [Android] Omnibox Placeholder Experiment (Closed)
Patch Set: fix some naming issues Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "chrome/browser/flag_descriptions.h" 5 #include "chrome/browser/flag_descriptions.h"
6 6
7 namespace flag_descriptions { 7 namespace flag_descriptions {
8 8
9 // Material Design version of chrome://bookmarks 9 // Material Design version of chrome://bookmarks
10 10
(...skipping 2245 matching lines...) Expand 10 before | Expand all | Expand 10 after
2256 const char kEnableWebapk[] = "Enable improved add to Home screen"; 2256 const char kEnableWebapk[] = "Enable improved add to Home screen";
2257 2257
2258 const char kEnableWebapkDescription[] = 2258 const char kEnableWebapkDescription[] =
2259 R"*(Packages "Progressive Web Apps" so that they can integrate more )*" 2259 R"*(Packages "Progressive Web Apps" so that they can integrate more )*"
2260 R"*(deeply with Android. A Chrome server is used to package sites. In )*" 2260 R"*(deeply with Android. A Chrome server is used to package sites. In )*"
2261 R"*(Chrome Canary and Chrome Dev, this requires “Untrusted )*" 2261 R"*(Chrome Canary and Chrome Dev, this requires “Untrusted )*"
2262 R"*(sources” to be enabled in Android security settings.)*"; 2262 R"*(sources” to be enabled in Android security settings.)*";
2263 2263
2264 #endif // defined(OS_ANDROID) 2264 #endif // defined(OS_ANDROID)
2265 2265
2266 #if defined(OS_ANDROID)
2267
2268 const char kOmniboxPlaceholderExperimentName[] =
2269 "Omnibox Placeholder Experiment";
2270
2271 const char kOmniboxPlaceholderExperimentDescription[] =
2272 "Switching this option changes the hint text in the omnibox"
2273 "url bar.";
2274
2275 const char kOmniboxPlaceholderExperimentSearchOrTypeUrl[] =
2276 "Search or type URL";
2277
2278 const char kOmniboxPlaceholderExperimentSearchOrTypeWebsiteName[] =
2279 "Search or type website name";
2280
2281 const char kOmniboxPlaceholderExperimentSearchTheWeb[] = "Search the web";
2282
2283 const char kOmniboxPlaceholderExperimentEnterASearchOrWebsite[] =
2284 "Enter a search or website";
2285
2286 const char kOmniboxPlaceholderExperimentSearchNews[] = "Search... news";
2287
2288 const char kOmniboxPlaceholderExperimentSearchRecipes[] = "Search... recipes";
2289
2290 const char kOmniboxPlaceholderExperimentSearchWeather[] = "Search... weather";
2291
2292 const char kOmniboxPlaceholderExperimentBlank[] = "No hint text";
2293
2294 #endif // defined(OS_ANDROID)
2295
2266 const char kEnableBrotliName[] = "Brotli Content-Encoding."; 2296 const char kEnableBrotliName[] = "Brotli Content-Encoding.";
2267 2297
2268 const char kEnableBrotliDescription[] = 2298 const char kEnableBrotliDescription[] =
2269 "Enable Brotli Content-Encoding support."; 2299 "Enable Brotli Content-Encoding support.";
2270 2300
2271 const char kEnableWebfontsInterventionName[] = 2301 const char kEnableWebfontsInterventionName[] =
2272 "New version of User Agent Intervention for WebFonts loading."; 2302 "New version of User Agent Intervention for WebFonts loading.";
2273 2303
2274 const char kEnableWebfontsInterventionDescription[] = 2304 const char kEnableWebfontsInterventionDescription[] =
2275 "Enable New version of User Agent Intervention for WebFonts loading."; 2305 "Enable New version of User Agent Intervention for WebFonts loading.";
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
3199 3229
3200 const char kDisableNewVirtualKeyboardBehaviorName[] = 3230 const char kDisableNewVirtualKeyboardBehaviorName[] =
3201 "New window behavior for the accessibility keyboard"; 3231 "New window behavior for the accessibility keyboard";
3202 const char kDisableNewVirtualKeyboardBehaviorDescription[] = 3232 const char kDisableNewVirtualKeyboardBehaviorDescription[] =
3203 "Disable new window behavior for the accessibility keyboard " 3233 "Disable new window behavior for the accessibility keyboard "
3204 "in non-sticky mode (do not change work area in non-sticky mode)."; 3234 "in non-sticky mode (do not change work area in non-sticky mode).";
3205 3235
3206 #endif // defined(OS_CHROMEOS) 3236 #endif // defined(OS_CHROMEOS)
3207 3237
3208 } // namespace flag_descriptions 3238 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698