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 #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 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; | 9 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; |
10 | 10 |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 257 |
258 const char kSecondaryUiMdDescription[] = | 258 const char kSecondaryUiMdDescription[] = |
259 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, " | 259 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, " |
260 "etc.). On Mac, this enables MacViews, which uses toolkit-views for " | 260 "etc.). On Mac, this enables MacViews, which uses toolkit-views for " |
261 "native browser dialogs."; | 261 "native browser dialogs."; |
262 | 262 |
263 const char kScrollPredictionDescription[] = | 263 const char kScrollPredictionDescription[] = |
264 "Predicts the finger's future position during scrolls allowing time to " | 264 "Predicts the finger's future position during scrolls allowing time to " |
265 "render the frame before the finger is there."; | 265 "render the frame before the finger is there."; |
266 | 266 |
267 const char kAddToShelfName[] = "Add to shelf"; | 267 const char kAppBannersName[] = "App Banners"; |
268 | 268 |
269 const char kAddToShelfDescription[] = | 269 const char kAppBannersDescription[] = |
270 "Enable the display of add to shelf banners, which prompt a user to add " | 270 "Enable the display of Progressive Web App banners, which prompt a user to " |
271 "a web app to their shelf, or other platform-specific equivalent."; | 271 "add a web app to their shelf, or other platform-specific equivalent."; |
272 | 272 |
273 const char kBypassAppBannerEngagementChecksName[] = | 273 const char kBypassAppBannerEngagementChecksName[] = |
274 "Bypass user engagement checks"; | 274 "Bypass user engagement checks"; |
275 | 275 |
276 const char kBypassAppBannerEngagementChecksDescription[] = | 276 const char kBypassAppBannerEngagementChecksDescription[] = |
277 "Bypasses user engagement checks for displaying app banners, such as " | 277 "Bypasses user engagement checks for displaying app banners, such as " |
278 "requiring that users have visited the site before and that the banner " | 278 "requiring that users have visited the site before and that the banner " |
279 "hasn't been shown recently. This allows developers to test that other " | 279 "hasn't been shown recently. This allows developers to test that other " |
280 "eligibility requirements for showing app banners, such as having a " | 280 "eligibility requirements for showing app banners, such as having a " |
281 "manifest, are met."; | 281 "manifest, are met."; |
(...skipping 2994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3276 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3276 "in non-sticky mode (do not change work area in non-sticky mode)."; |
3277 | 3277 |
3278 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3278 const char kUiDevToolsName[] = "Enable native UI inspection"; |
3279 const char kUiDevToolsDescription[] = | 3279 const char kUiDevToolsDescription[] = |
3280 "Enables inspection of native UI elements. For local inspection use " | 3280 "Enables inspection of native UI elements. For local inspection use " |
3281 "chrome://inspect#other"; | 3281 "chrome://inspect#other"; |
3282 | 3282 |
3283 #endif // defined(OS_CHROMEOS) | 3283 #endif // defined(OS_CHROMEOS) |
3284 | 3284 |
3285 } // namespace flag_descriptions | 3285 } // namespace flag_descriptions |
OLD | NEW |