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

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

Issue 2903293002: [Android] Omnibox Placeholder Experiment (Closed)
Patch Set: Created 3 years, 7 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 2231 matching lines...) Expand 10 before | Expand all | Expand 10 after
2242 const char kEnableWebapk[] = "Enable improved add to Home screen"; 2242 const char kEnableWebapk[] = "Enable improved add to Home screen";
2243 2243
2244 const char kEnableWebapkDescription[] = 2244 const char kEnableWebapkDescription[] =
2245 R"*(Packages "Progressive Web Apps" so that they can integrate more )*" 2245 R"*(Packages "Progressive Web Apps" so that they can integrate more )*"
2246 R"*(deeply with Android. A Chrome server is used to package sites. In )*" 2246 R"*(deeply with Android. A Chrome server is used to package sites. In )*"
2247 R"*(Chrome Canary and Chrome Dev, this requires “Untrusted )*" 2247 R"*(Chrome Canary and Chrome Dev, this requires “Untrusted )*"
2248 R"*(sources” to be enabled in Android security settings.)*"; 2248 R"*(sources” to be enabled in Android security settings.)*";
2249 2249
2250 #endif // defined(OS_ANDROID) 2250 #endif // defined(OS_ANDROID)
2251 2251
2252 #if defined(OS_ANDROID)
2253
2254 const char kOmniboxPlaceholderExperimentName[] =
2255 "Clank Omnibox Placeholder Experiment";
2256
2257 const char kOmniboxPlaceholderExperimentDescription[] =
2258 "Switching this option changes the hint text in omnibox"
mdjones 2017/05/26 16:14:35 nit: "...hint text in the omnibox..."
huayinz 2017/05/26 17:21:36 Done.
2259 "url bar.";
2260
2261 const char kOmniboxPlaceholderExperimentSearchOrTypeUrl[] =
2262 "Search or type URL";
2263
2264 const char kOmniboxPlaceholderExperimentSearchOrTypeWebsiteName[] =
2265 "Search or type website name";
2266
2267 const char kOmniboxPlaceholderExperimentSearchTheWeb[] = "Search the web";
2268
2269 const char kOmniboxPlaceholderExperimentEnterASearchOrWebsite[] =
2270 "Enter a search or website";
2271
2272 const char kOmniboxPlaceholderExperimentSearchNews[] = "Search... news";
2273
2274 const char kOmniboxPlaceholderExperimentSearchRecipes[] = "Search... recipes";
2275
2276 const char kOmniboxPlaceholderExperimentSearchWeather[] = "Search... weather";
2277
2278 const char kOmniboxPlaceholderExperimentBlank[] = "No hint text";
2279
2280 #endif // defined(OS_ANDROID)
2281
2252 const char kEnableBrotliName[] = "Brotli Content-Encoding."; 2282 const char kEnableBrotliName[] = "Brotli Content-Encoding.";
2253 2283
2254 const char kEnableBrotliDescription[] = 2284 const char kEnableBrotliDescription[] =
2255 "Enable Brotli Content-Encoding support."; 2285 "Enable Brotli Content-Encoding support.";
2256 2286
2257 const char kEnableWebfontsInterventionName[] = 2287 const char kEnableWebfontsInterventionName[] =
2258 "New version of User Agent Intervention for WebFonts loading."; 2288 "New version of User Agent Intervention for WebFonts loading.";
2259 2289
2260 const char kEnableWebfontsInterventionDescription[] = 2290 const char kEnableWebfontsInterventionDescription[] =
2261 "Enable New version of User Agent Intervention for WebFonts loading."; 2291 "Enable New version of User Agent Intervention for WebFonts loading.";
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after
3144 3174
3145 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) 3175 #endif // !defined(OS_ANDROID) && !defined(OS_IOS)
3146 3176
3147 #if defined(OS_MACOSX) 3177 #if defined(OS_MACOSX)
3148 extern const char kMacRTLName[] = "Enable RTL"; 3178 extern const char kMacRTLName[] = "Enable RTL";
3149 extern const char kMacRTLDescription[] = 3179 extern const char kMacRTLDescription[] =
3150 "Mirrors the UI for RTL language users"; 3180 "Mirrors the UI for RTL language users";
3151 #endif 3181 #endif
3152 3182
3153 } // namespace flag_descriptions 3183 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698