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

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

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 #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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 245
246 const char kTopChromeMd[] = "UI Layout for the browser's top chrome"; 246 const char kTopChromeMd[] = "UI Layout for the browser's top chrome";
247 247
248 const char kTopChromeMdDescription[] = 248 const char kTopChromeMdDescription[] =
249 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*"; 249 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*";
250 250
251 const char kTopChromeMdMaterial[] = "Normal"; 251 const char kTopChromeMdMaterial[] = "Normal";
252 252
253 const char kTopChromeMdMaterialHybrid[] = "Touch"; 253 const char kTopChromeMdMaterialHybrid[] = "Touch";
254 254
255 const char kSiteDetails[] = "Site details";
256
257 const char kSiteDetailsDescription[] =
258 "Adds UI to view all content settings for a specific origin.";
dominickn 2017/05/05 02:58:53 Nit: "Adds UI in MD Settings to view..." ?
Patti Lor 2017/05/05 08:45:21 Oh, that's better-thanks!
259
255 const char kSiteSettings[] = "Site settings with All sites and Site details"; 260 const char kSiteSettings[] = "Site settings with All sites and Site details";
256 261
257 const char kSiteSettingsDescription[] = 262 const char kSiteSettingsDescription[] =
258 "Adds new ways of viewing Site settings."; 263 "Adds new ways of viewing Site settings.";
259 264
260 const char kSecondaryUiMd[] = 265 const char kSecondaryUiMd[] =
261 "Material Design in the rest of the browser's native UI"; 266 "Material Design in the rest of the browser's native UI";
262 267
263 const char kSecondaryUiMdDescription[] = 268 const char kSecondaryUiMdDescription[] =
264 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, " 269 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, "
(...skipping 2839 matching lines...) Expand 10 before | Expand all | Expand 10 after
3104 3109
3105 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; 3110 const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
3106 3111
3107 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; 3112 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
3108 3113
3109 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; 3114 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
3110 3115
3111 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; 3116 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
3112 3117
3113 } // namespace flag_descriptions 3118 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698