| 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 2848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2859 const char kEnableChromevoxArcSupportDescription[] = | 2859 const char kEnableChromevoxArcSupportDescription[] = |
| 2860 "Enable ChromeVox screen reader features in ARC"; | 2860 "Enable ChromeVox screen reader features in ARC"; |
| 2861 | 2861 |
| 2862 #endif // defined(OS_CHROMEOS) | 2862 #endif // defined(OS_CHROMEOS) |
| 2863 | 2863 |
| 2864 const char kMojoLoadingName[] = "Use Mojo IPC for resource loading"; | 2864 const char kMojoLoadingName[] = "Use Mojo IPC for resource loading"; |
| 2865 | 2865 |
| 2866 const char kMojoLoadingDescription[] = | 2866 const char kMojoLoadingDescription[] = |
| 2867 "Use Mojo IPC instead of traditional Chrome IPC for resource loading."; | 2867 "Use Mojo IPC instead of traditional Chrome IPC for resource loading."; |
| 2868 | 2868 |
| 2869 const char kNetworkPredictionOptionsForServiceWorkerName[] = |
| 2870 "Network prediction options for service worker"; |
| 2871 |
| 2872 const char kNetworkPredictionOptionsForServiceWorkerDescription[] = |
| 2873 "Network predictor options for service worker controlled pages."; |
| 2874 |
| 2869 #if defined(OS_ANDROID) | 2875 #if defined(OS_ANDROID) |
| 2870 | 2876 |
| 2871 const char kUseNewDoodleApiName[] = "Use new Doodle API"; | 2877 const char kUseNewDoodleApiName[] = "Use new Doodle API"; |
| 2872 | 2878 |
| 2873 const char kUseNewDoodleApiDescription[] = | 2879 const char kUseNewDoodleApiDescription[] = |
| 2874 "Enables the new API to fetch Doodles for the NTP."; | 2880 "Enables the new API to fetch Doodles for the NTP."; |
| 2875 | 2881 |
| 2876 #endif // defined(OS_ANDROID) | 2882 #endif // defined(OS_ANDROID) |
| 2877 | 2883 |
| 2878 const char kDebugShortcutsDescription[] = | 2884 const char kDebugShortcutsDescription[] = |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3281 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3287 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3282 | 3288 |
| 3283 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3289 const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3284 const char kUiDevToolsDescription[] = | 3290 const char kUiDevToolsDescription[] = |
| 3285 "Enables inspection of native UI elements. For local inspection use " | 3291 "Enables inspection of native UI elements. For local inspection use " |
| 3286 "chrome://inspect#other"; | 3292 "chrome://inspect#other"; |
| 3287 | 3293 |
| 3288 #endif // defined(OS_CHROMEOS) | 3294 #endif // defined(OS_CHROMEOS) |
| 3289 | 3295 |
| 3290 } // namespace flag_descriptions | 3296 } // namespace flag_descriptions |
| OLD | NEW |