OLD | NEW |
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 2705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2716 const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar"; | 2716 const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar"; |
2717 | 2717 |
2718 const char kWindows10CustomTitlebarDescription[] = | 2718 const char kWindows10CustomTitlebarDescription[] = |
2719 "If enabled, Chrome will draw the titlebar and caption buttons instead " | 2719 "If enabled, Chrome will draw the titlebar and caption buttons instead " |
2720 "of deferring to Windows."; | 2720 "of deferring to Windows."; |
2721 | 2721 |
2722 #endif // defined(OS_WIN) | 2722 #endif // defined(OS_WIN) |
2723 | 2723 |
2724 #if defined(OS_WIN) | 2724 #if defined(OS_WIN) |
2725 | 2725 |
2726 const char kPostscriptPrinting[] = "PostScript Printing"; | 2726 const char kDisablePostscriptPrinting[] = "Disable PostScript Printing"; |
2727 | 2727 |
2728 const char kPostscriptPrintingDescription[] = | 2728 const char kDisablePostscriptPrintingDescription[] = |
2729 "Enable postscript generation in place of emf generation when printing " | 2729 "Disables PostScript generation when printing to PostScript capable " |
2730 "to postscript capable printers."; | 2730 "printers, and uses EMF generation in its place."; |
2731 | 2731 |
2732 #endif // defined(OS_WIN) | 2732 #endif // defined(OS_WIN) |
2733 | 2733 |
2734 #if defined(OS_ANDROID) | 2734 #if defined(OS_ANDROID) |
2735 | 2735 |
2736 const char kAiaFetchingName[] = "Intermediate Certificate Fetching"; | 2736 const char kAiaFetchingName[] = "Intermediate Certificate Fetching"; |
2737 | 2737 |
2738 const char kAiaFetchingDescription[] = | 2738 const char kAiaFetchingDescription[] = |
2739 "Enable intermediate certificate fetching when a server does not " | 2739 "Enable intermediate certificate fetching when a server does not " |
2740 "provide sufficient certificates to build a chain to a trusted root."; | 2740 "provide sufficient certificates to build a chain to a trusted root."; |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3045 | 3045 |
3046 const char kOmniboxDisplayTitleForCurrentUrlName[] = | 3046 const char kOmniboxDisplayTitleForCurrentUrlName[] = |
3047 "Include title for the current URL in the omnibox"; | 3047 "Include title for the current URL in the omnibox"; |
3048 | 3048 |
3049 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = | 3049 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
3050 "In the event that the omnibox provides suggestions on-focus, the URL of " | 3050 "In the event that the omnibox provides suggestions on-focus, the URL of " |
3051 "the current page is provided as the first suggestion without a title. " | 3051 "the current page is provided as the first suggestion without a title. " |
3052 "Enabling this flag causes the title to be displayed."; | 3052 "Enabling this flag causes the title to be displayed."; |
3053 | 3053 |
3054 } // namespace flag_descriptions | 3054 } // namespace flag_descriptions |
OLD | NEW |