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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 const char kForceTabletModeAuto[] = "Auto (default)"; | 118 const char kForceTabletModeAuto[] = "Auto (default)"; |
119 | 119 |
120 // Print Preview features | 120 // Print Preview features |
121 | 121 |
122 const char kPrintPdfAsImageName[] = "Print Pdf as Image"; | 122 const char kPrintPdfAsImageName[] = "Print Pdf as Image"; |
123 | 123 |
124 const char kPrintPdfAsImageDescription[] = | 124 const char kPrintPdfAsImageDescription[] = |
125 "If enabled, an option to print PDF files as images will be available " | 125 "If enabled, an option to print PDF files as images will be available " |
126 "in print preview."; | 126 "in print preview."; |
127 | 127 |
128 const char kPrintScalingName[] = "Print Scaling."; | |
129 | |
130 const char kPrintScalingDescription[] = | |
131 "If enabled, an option to scale documents will be available in print " | |
132 "preview."; | |
133 | |
134 const char kNaclName[] = "Native Client"; | 128 const char kNaclName[] = "Native Client"; |
135 | 129 |
136 #if defined(OS_ANDROID) | 130 #if defined(OS_ANDROID) |
137 | 131 |
138 const char kNaclDescription[] = "Enable support for Native Client."; | 132 const char kNaclDescription[] = "Enable support for Native Client."; |
139 | 133 |
140 #endif // defined(OS_ANDROID) | 134 #endif // defined(OS_ANDROID) |
141 | 135 |
142 #if !defined(OS_ANDROID) | 136 #if !defined(OS_ANDROID) |
143 | 137 |
(...skipping 2873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3017 const char kEnableCopylessPasteDescription[] = | 3011 const char kEnableCopylessPasteDescription[] = |
3018 "Provide suggestions for text input, based on your recent context. For " | 3012 "Provide suggestions for text input, based on your recent context. For " |
3019 "example, if you looked at a restaurant website and switched to the Maps " | 3013 "example, if you looked at a restaurant website and switched to the Maps " |
3020 "app, the keyboard would offer the name of that restaurant as a suggestion " | 3014 "app, the keyboard would offer the name of that restaurant as a suggestion " |
3021 "to enter into the search bar. The data is indexed locally, and never sent " | 3015 "to enter into the search bar. The data is indexed locally, and never sent " |
3022 "to the server. It's disabled in incognito mode."; | 3016 "to the server. It's disabled in incognito mode."; |
3023 | 3017 |
3024 #endif // defined(OS_ANDROID) | 3018 #endif // defined(OS_ANDROID) |
3025 | 3019 |
3026 } // namespace flag_descriptions | 3020 } // namespace flag_descriptions |
OLD | NEW |