Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2856913005: Add flags for CrOS Component using Feature API (Closed)
Patch Set: Add flags for CrOS Component using Feature API Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2303 matching lines...) Expand 10 before | Expand all | Expand 10 after
2314 2314
2315 const char kEnableTouchSupportForScreenMagnifierDescription[] = 2315 const char kEnableTouchSupportForScreenMagnifierDescription[] =
2316 "Enables touch support for screen magnifier"; 2316 "Enables touch support for screen magnifier";
2317 2317
2318 const char kEnableZipArchiverOnFileManagerName[] = 2318 const char kEnableZipArchiverOnFileManagerName[] =
2319 "ZIP archiver for Drive"; 2319 "ZIP archiver for Drive";
2320 2320
2321 const char kEnableZipArchiverOnFileManagerDescription[] = 2321 const char kEnableZipArchiverOnFileManagerDescription[] =
2322 "Enable the ability to archive and unpack files on Drive in the Files app"; 2322 "Enable the ability to archive and unpack files on Drive in the Files app";
2323 2323
2324 const char kCrOSComponentName[] = "Chrome OS Component";
2325
2326 const char kCrOSComponentDescription[] =
2327 "Enable the use of Chrome OS Component.";
skau 2017/05/03 21:07:49 Do we want this description to be more verbose?
xiaochu 2017/05/03 23:40:29 Done.
2328
2324 #endif // defined(OS_CHROMEOS) 2329 #endif // defined(OS_CHROMEOS)
2325 2330
2326 #if defined(OS_ANDROID) 2331 #if defined(OS_ANDROID)
2327 2332
2328 const char kContentSuggestionsCategoryOrderName[] = 2333 const char kContentSuggestionsCategoryOrderName[] =
2329 "Default content suggestions category order (e.g. on NTP)"; 2334 "Default content suggestions category order (e.g. on NTP)";
2330 2335
2331 const char kContentSuggestionsCategoryOrderDescription[] = 2336 const char kContentSuggestionsCategoryOrderDescription[] =
2332 "Set default order of content suggestion categories (e.g. on the NTP)."; 2337 "Set default order of content suggestion categories (e.g. on the NTP).";
2333 2338
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
3073 3078
3074 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; 3079 const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
3075 3080
3076 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; 3081 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
3077 3082
3078 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; 3083 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
3079 3084
3080 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; 3085 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
3081 3086
3082 } // namespace flag_descriptions 3087 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698