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

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

Issue 2877483002: Add about:flags entries for UseGoogleLocalNtp and OneGoogleBarOnLocalNtp (Closed)
Patch Set: less ifdef 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
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | chrome/browser/search/local_ntp_source.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3135 matching lines...) Expand 10 before | Expand all | Expand 10 after
3146 #if defined(OS_WIN) 3146 #if defined(OS_WIN)
3147 3147
3148 // Name and description of the flag that enables D3D v-sync. 3148 // Name and description of the flag that enables D3D v-sync.
3149 const char kEnableD3DVsync[] = "D3D v-sync"; 3149 const char kEnableD3DVsync[] = "D3D v-sync";
3150 const char kEnableD3DVsyncDescription[] = 3150 const char kEnableD3DVsyncDescription[] =
3151 "Produces v-sync signal by having D3D wait for vertical blanking interval " 3151 "Produces v-sync signal by having D3D wait for vertical blanking interval "
3152 "to occur."; 3152 "to occur.";
3153 3153
3154 #endif // defined(OS_WIN) 3154 #endif // defined(OS_WIN)
3155 3155
3156 #if !defined(OS_ANDROID) && !defined(OS_IOS)
3157
3158 const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
3159 const char kUseGoogleLocalNtpDescription[] =
3160 "Use the local New Tab page if Google is the default search engine.";
3161
3162 const char kOneGoogleBarOnLocalNtpName[] =
3163 "Enable the OneGoogleBar on the local NTP";
3164 const char kOneGoogleBarOnLocalNtpDescription[] =
3165 "Show a OneGoogleBar on the local New Tab page if Google is the default "
3166 "search engine.";
3167
3168 #endif // !defined(OS_ANDROID) && !defined(OS_IOS)
3169
3156 } // namespace flag_descriptions 3170 } // namespace flag_descriptions
OLDNEW
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | chrome/browser/search/local_ntp_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698