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

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

Issue 2855143004: Implements a display scale tray setting behind a chrome switch (Closed)
Patch Set: Sync with ToT 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 3103 matching lines...) Expand 10 before | Expand all | Expand 10 after
3114 "Request server-side suggestions even if there are only very few of them " 3114 "Request server-side suggestions even if there are only very few of them "
3115 "and use them for tiles on the New Tab Page."; 3115 "and use them for tiles on the New Tab Page.";
3116 3116
3117 const char kLocationHardReloadName[] = 3117 const char kLocationHardReloadName[] =
3118 "Experimental change for Location.reload() to trigger a hard-reload."; 3118 "Experimental change for Location.reload() to trigger a hard-reload.";
3119 3119
3120 const char kLocationHardReloadDescription[] = 3120 const char kLocationHardReloadDescription[] =
3121 "Enable an experimental change for Location.reload() to trigger a " 3121 "Enable an experimental change for Location.reload() to trigger a "
3122 "hard-reload."; 3122 "hard-reload.";
3123 3123
3124 #if defined(OS_CHROMEOS) && defined(USE_ASH)
3125 // Name of the flag that enables display scale tray settings.
3126 const char kAshEnableScaleSettingsTrayName[] = "Display scale tray setting";
3127
3128 // Description of the flag that enables display scale tray settings.
3129 const char kAshEnableScaleSettingsTrayDescription[] =
3130 "Enables a setting in the system tray to change the device scale factor of "
3131 "the device to any fractional value.";
3132 #endif // defined(OS_CHROMEOS) && defined(USE_ASH)
3133
3124 } // namespace flag_descriptions 3134 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698