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

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

Issue 2738003002: Add title to current page in zero suggest. (Closed)
Patch Set: Fix a nullptr problem that was crashing some UI tests. Created 3 years, 8 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 3037 matching lines...) Expand 10 before | Expand all | Expand 10 after
3048 "Policy used when deciding if audio or video is allowed to autoplay."; 3048 "Policy used when deciding if audio or video is allowed to autoplay.";
3049 3049
3050 const char kAutoplayPolicyNoUserGestureRequired[] = 3050 const char kAutoplayPolicyNoUserGestureRequired[] =
3051 "No user gesture is required."; 3051 "No user gesture is required.";
3052 3052
3053 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; 3053 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
3054 3054
3055 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = 3055 const char kAutoplayPolicyCrossOriginUserGestureRequired[] =
3056 "User gesture is required for cross-origin iframes."; 3056 "User gesture is required for cross-origin iframes.";
3057 3057
3058 const char kOmniboxDisplayTitleForCurrentUrlName[] =
3059 "Include title for the current URL in the omnibox";
3060
3061 const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
3062 "In the event that the omnibox provides suggestions on-focus, the URL of "
3063 "the current page is provided as the first suggestion without a title. "
3064 "Enabling this flag causes the title to be displayed.";
3065
3058 } // namespace flag_descriptions 3066 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698