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

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

Issue 2921273002: Autoplay: add document user activation flag in chrome://flags (Closed)
Patch Set: 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 3096 matching lines...) Expand 10 before | Expand all | Expand 10 after
3107 "Policy used when deciding if audio or video is allowed to autoplay."; 3107 "Policy used when deciding if audio or video is allowed to autoplay.";
3108 3108
3109 const char kAutoplayPolicyNoUserGestureRequired[] = 3109 const char kAutoplayPolicyNoUserGestureRequired[] =
3110 "No user gesture is required."; 3110 "No user gesture is required.";
3111 3111
3112 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; 3112 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
3113 3113
3114 const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] = 3114 const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] =
3115 "User gesture is required for cross-origin iframes."; 3115 "User gesture is required for cross-origin iframes.";
3116 3116
3117 const char kAutoplayPolicyDocumentUserActivation[] =
3118 "Document user activation is required.";
3119
3117 const char kOmniboxDisplayTitleForCurrentUrlName[] = 3120 const char kOmniboxDisplayTitleForCurrentUrlName[] =
3118 "Include title for the current URL in the omnibox"; 3121 "Include title for the current URL in the omnibox";
3119 3122
3120 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = 3123 const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
3121 "In the event that the omnibox provides suggestions on-focus, the URL of " 3124 "In the event that the omnibox provides suggestions on-focus, the URL of "
3122 "the current page is provided as the first suggestion without a title. " 3125 "the current page is provided as the first suggestion without a title. "
3123 "Enabling this flag causes the title to be displayed."; 3126 "Enabling this flag causes the title to be displayed.";
3124 3127
3125 const char kOmniboxUIMaxAutocompleteMatchesName[] = 3128 const char kOmniboxUIMaxAutocompleteMatchesName[] =
3126 "Omnibox UI Max Autocomplete Matches"; 3129 "Omnibox UI Max Autocomplete Matches";
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
3228 3231
3229 const char kDisableNewVirtualKeyboardBehaviorName[] = 3232 const char kDisableNewVirtualKeyboardBehaviorName[] =
3230 "New window behavior for the accessibility keyboard"; 3233 "New window behavior for the accessibility keyboard";
3231 const char kDisableNewVirtualKeyboardBehaviorDescription[] = 3234 const char kDisableNewVirtualKeyboardBehaviorDescription[] =
3232 "Disable new window behavior for the accessibility keyboard " 3235 "Disable new window behavior for the accessibility keyboard "
3233 "in non-sticky mode (do not change work area in non-sticky mode)."; 3236 "in non-sticky mode (do not change work area in non-sticky mode).";
3234 3237
3235 #endif // defined(OS_CHROMEOS) 3238 #endif // defined(OS_CHROMEOS)
3236 3239
3237 } // namespace flag_descriptions 3240 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698