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 2314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2325 | 2325 |
2326 const char kEnableTouchSupportForScreenMagnifierDescription[] = | 2326 const char kEnableTouchSupportForScreenMagnifierDescription[] = |
2327 "Enables touch support for screen magnifier"; | 2327 "Enables touch support for screen magnifier"; |
2328 | 2328 |
2329 const char kEnableZipArchiverOnFileManagerName[] = | 2329 const char kEnableZipArchiverOnFileManagerName[] = |
2330 "ZIP archiver for Drive"; | 2330 "ZIP archiver for Drive"; |
2331 | 2331 |
2332 const char kEnableZipArchiverOnFileManagerDescription[] = | 2332 const char kEnableZipArchiverOnFileManagerDescription[] = |
2333 "Enable the ability to archive and unpack files on Drive in the Files app"; | 2333 "Enable the ability to archive and unpack files on Drive in the Files app"; |
2334 | 2334 |
| 2335 const char kCrOSComponentName[] = "Chrome OS Component"; |
| 2336 |
| 2337 const char kCrOSComponentDescription[] = |
| 2338 "Enable the use of Chrome OS Component to download Chrome OS features " |
| 2339 "on-demand as components."; |
| 2340 |
2335 #endif // defined(OS_CHROMEOS) | 2341 #endif // defined(OS_CHROMEOS) |
2336 | 2342 |
2337 #if defined(OS_ANDROID) | 2343 #if defined(OS_ANDROID) |
2338 | 2344 |
2339 const char kContentSuggestionsCategoryOrderName[] = | 2345 const char kContentSuggestionsCategoryOrderName[] = |
2340 "Default content suggestions category order (e.g. on NTP)"; | 2346 "Default content suggestions category order (e.g. on NTP)"; |
2341 | 2347 |
2342 const char kContentSuggestionsCategoryOrderDescription[] = | 2348 const char kContentSuggestionsCategoryOrderDescription[] = |
2343 "Set default order of content suggestion categories (e.g. on the NTP)."; | 2349 "Set default order of content suggestion categories (e.g. on the NTP)."; |
2344 | 2350 |
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3084 | 3090 |
3085 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | 3091 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; |
3086 | 3092 |
3087 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | 3093 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; |
3088 | 3094 |
3089 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | 3095 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; |
3090 | 3096 |
3091 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3097 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
3092 | 3098 |
3093 } // namespace flag_descriptions | 3099 } // namespace flag_descriptions |
OLD | NEW |