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

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

Issue 2475813002: Enable Native CUPS printing on Chrome OS. (Closed)
Patch Set: inverted conditional 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 2211 matching lines...) Expand 10 before | Expand all | Expand 10 after
2222 "This flag affects only when the intervention is enabled."; 2222 "This flag affects only when the intervention is enabled.";
2223 2223
2224 const char kEnableScrollAnchoringName[] = "Scroll Anchoring"; 2224 const char kEnableScrollAnchoringName[] = "Scroll Anchoring";
2225 2225
2226 const char kEnableScrollAnchoringDescription[] = 2226 const char kEnableScrollAnchoringDescription[] =
2227 "Adjusts scroll position to prevent visible jumps when offscreen " 2227 "Adjusts scroll position to prevent visible jumps when offscreen "
2228 "content changes."; 2228 "content changes.";
2229 2229
2230 #if defined(OS_CHROMEOS) 2230 #if defined(OS_CHROMEOS)
2231 2231
2232 const char kEnableNativeCupsName[] = "Native CUPS"; 2232 const char kDisableNativeCupsName[] = "Native CUPS";
2233 2233
2234 const char kEnableNativeCupsDescription[] = 2234 const char kDisableNativeCupsDescription[] =
2235 "Enables the use of the native CUPS printing backend."; 2235 "Disable the use of the native CUPS printing backend.";
2236 2236
2237 const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App"; 2237 const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App";
2238 2238
2239 const char kEnableAndroidWallpapersAppDescription[] = 2239 const char kEnableAndroidWallpapersAppDescription[] =
2240 "Enables the Android Wallpapers App as the default Wallpaper App on " 2240 "Enables the Android Wallpapers App as the default Wallpaper App on "
2241 "Chrome OS."; 2241 "Chrome OS.";
2242 2242
2243 const char kEnableTouchSupportForScreenMagnifierName[] = 2243 const char kEnableTouchSupportForScreenMagnifierName[] =
2244 "Touch support for screen magnifier"; 2244 "Touch support for screen magnifier";
2245 2245
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
2893 const char kEnableEhvInputName[] = 2893 const char kEnableEhvInputName[] =
2894 "Emoji, handwriting and voice input on opt-in IME menu"; 2894 "Emoji, handwriting and voice input on opt-in IME menu";
2895 2895
2896 const char kEnableEhvInputDescription[] = 2896 const char kEnableEhvInputDescription[] =
2897 "Enable access to emoji, handwriting and voice input form opt-in IME " 2897 "Enable access to emoji, handwriting and voice input form opt-in IME "
2898 "menu."; 2898 "menu.";
2899 2899
2900 #endif // #if defined(OS_CHROMEOS) 2900 #endif // #if defined(OS_CHROMEOS)
2901 2901
2902 } // namespace flag_descriptions 2902 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698