| 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 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; | 9 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; |
| 10 | 10 |
| (...skipping 2062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2073 const char kOfflineBookmarksDescription[] = | 2073 const char kOfflineBookmarksDescription[] = |
| 2074 "Enable saving bookmarked pages for offline viewing."; | 2074 "Enable saving bookmarked pages for offline viewing."; |
| 2075 | 2075 |
| 2076 const char kNtpOfflinePagesName[] = "Enable NTP offline pages"; | 2076 const char kNtpOfflinePagesName[] = "Enable NTP offline pages"; |
| 2077 | 2077 |
| 2078 const char kNtpOfflinePagesDescription[] = | 2078 const char kNtpOfflinePagesDescription[] = |
| 2079 "Enables badging of offline pages on the New Tab page. Only relevant if " | 2079 "Enables badging of offline pages on the New Tab page. Only relevant if " |
| 2080 "offline pages are enabled."; | 2080 "offline pages are enabled."; |
| 2081 | 2081 |
| 2082 const char kOfflinePagesAsyncDownloadName[] = | 2082 const char kOfflinePagesAsyncDownloadName[] = |
| 2083 R"*(Enables showing "DOWNLOAD PAGE LATER" button in error pages.)*"; | 2083 R"*(Enables showing "DOWNLOAD WHEN ONLINE" button in error pages.)*"; |
| 2084 | 2084 |
| 2085 const char kOfflinePagesAsyncDownloadDescription[] = | 2085 const char kOfflinePagesAsyncDownloadDescription[] = |
| 2086 R"*(Enables showing "DOWNLOAD PAGE LATER" button in error pages such )*" | 2086 R"*(Enables showing "DOWNLOAD WHEN ONLINE" button in error pages such )*" |
| 2087 R"*(that the user can click on it to download the page later.)*"; | 2087 R"*(that the user can click on it to download the page later.)*"; |
| 2088 | 2088 |
| 2089 const char kOfflinePagesSvelteConcurrentLoadingName[] = | 2089 const char kOfflinePagesSvelteConcurrentLoadingName[] = |
| 2090 "Enables concurrent background loading on svelte."; | 2090 "Enables concurrent background loading on svelte."; |
| 2091 | 2091 |
| 2092 const char kOfflinePagesSvelteConcurrentLoadingDescription[] = | 2092 const char kOfflinePagesSvelteConcurrentLoadingDescription[] = |
| 2093 "Enables concurrent background loading (or downloading) of pages on " | 2093 "Enables concurrent background loading (or downloading) of pages on " |
| 2094 "Android svelte (512MB RAM) devices. Otherwise, background loading will " | 2094 "Android svelte (512MB RAM) devices. Otherwise, background loading will " |
| 2095 "happen when the svelte device is idle."; | 2095 "happen when the svelte device is idle."; |
| 2096 | 2096 |
| (...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3219 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3219 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3220 | 3220 |
| 3221 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3221 const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3222 const char kUiDevToolsDescription[] = | 3222 const char kUiDevToolsDescription[] = |
| 3223 "Enables inspection of native UI elements. For local inspection use " | 3223 "Enables inspection of native UI elements. For local inspection use " |
| 3224 "chrome://inspect#other"; | 3224 "chrome://inspect#other"; |
| 3225 | 3225 |
| 3226 #endif // defined(OS_CHROMEOS) | 3226 #endif // defined(OS_CHROMEOS) |
| 3227 | 3227 |
| 3228 } // namespace flag_descriptions | 3228 } // namespace flag_descriptions |
| OLD | NEW |