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

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

Issue 2854403003: MD Settings: Add feature flag for showing content settings in a per-origin view. (Closed)
Patch Set: Fix histogram entry? 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 // Description of the flag which changes the material design elements in the top 253 // Description of the flag which changes the material design elements in the top
254 // chrome of the browser. 254 // chrome of the browser.
255 extern const char kTopChromeMdDescription[]; 255 extern const char kTopChromeMdDescription[];
256 256
257 // Top Chrome material design option (default). 257 // Top Chrome material design option (default).
258 extern const char kTopChromeMdMaterial[]; 258 extern const char kTopChromeMdMaterial[];
259 259
260 // Top Chrome material hybrid design option (for touchscreens). 260 // Top Chrome material hybrid design option (for touchscreens).
261 extern const char kTopChromeMdMaterialHybrid[]; 261 extern const char kTopChromeMdMaterialHybrid[];
262 262
263 // Title of the flag which enables site details in MD settings.
264 extern const char kSiteDetails[];
265
266 // Description of the flag which enables or disables site details in MD
267 // settings.
268 extern const char kSiteDetailsDescription[];
269
263 // Title of the flag which enables the site settings all sites list and site 270 // Title of the flag which enables the site settings all sites list and site
264 // details. 271 // details.
265 extern const char kSiteSettings[]; 272 extern const char kSiteSettings[];
266 273
267 // Description of the flag which enables or disables the site settings all sites 274 // Description of the flag which enables or disables the site settings all sites
268 // list and site details. 275 // list and site details.
269 extern const char kSiteSettingsDescription[]; 276 extern const char kSiteSettingsDescription[];
270 277
271 // Title of the flag which enables or disables material design in the rest of 278 // Title of the flag which enables or disables material design in the rest of
272 // the native UI of the browser (beyond top chrome). 279 // the native UI of the browser (beyond top chrome).
(...skipping 3101 matching lines...) Expand 10 before | Expand all | Expand 10 after
3374 extern const char kEnableHeapProfilingDescription[]; 3381 extern const char kEnableHeapProfilingDescription[];
3375 3382
3376 // Descriptions of the different heap profiling modes. 3383 // Descriptions of the different heap profiling modes.
3377 extern const char kEnableHeapProfilingModePseudo[]; 3384 extern const char kEnableHeapProfilingModePseudo[];
3378 extern const char kEnableHeapProfilingModeNative[]; 3385 extern const char kEnableHeapProfilingModeNative[];
3379 extern const char kEnableHeapProfilingTaskProfiler[]; 3386 extern const char kEnableHeapProfilingTaskProfiler[];
3380 3387
3381 } // namespace flag_descriptions 3388 } // namespace flag_descriptions
3382 3389
3383 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3390 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698