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

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

Issue 14345002: Adds --file-manager-new-ui to chrome://flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <string.h> 7 #include <string.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <iterator> 10 #include <iterator>
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 SINGLE_VALUE_TYPE(ash::switches::kAshDisableNewLockAnimations), 1031 SINGLE_VALUE_TYPE(ash::switches::kAshDisableNewLockAnimations),
1032 }, 1032 },
1033 { 1033 {
1034 "file-manager-legacy", 1034 "file-manager-legacy",
1035 IDS_FLAGS_FILE_MANAGER_LEGACY_NAME, 1035 IDS_FLAGS_FILE_MANAGER_LEGACY_NAME,
1036 IDS_FLAGS_FILE_MANAGER_LEGACY_DESCRIPTION, 1036 IDS_FLAGS_FILE_MANAGER_LEGACY_DESCRIPTION,
1037 kOsCrOS, 1037 kOsCrOS,
1038 SINGLE_VALUE_TYPE(switches::kFileManagerLegacy), 1038 SINGLE_VALUE_TYPE(switches::kFileManagerLegacy),
1039 }, 1039 },
1040 { 1040 {
1041 "file-manager-new-ui",
1042 IDS_FLAGS_FILE_MANAGER_NEW_UI_NAME,
1043 IDS_FLAGS_FILE_MANAGER_NEW_UI_DESCRIPTION,
1044 kOsCrOS,
1045 SINGLE_VALUE_TYPE(switches::kFileManagerNewUI),
1046 },
1047 {
1041 "disable-launcher-per-display", 1048 "disable-launcher-per-display",
1042 IDS_FLAGS_DISABLE_LAUNCHER_PER_DISPLAY_NAME, 1049 IDS_FLAGS_DISABLE_LAUNCHER_PER_DISPLAY_NAME,
1043 IDS_FLAGS_DISABLE_LAUNCHER_PER_DISPLAY_DESCRIPTION, 1050 IDS_FLAGS_DISABLE_LAUNCHER_PER_DISPLAY_DESCRIPTION,
1044 kOsCrOS, 1051 kOsCrOS,
1045 SINGLE_VALUE_TYPE(ash::switches::kAshDisableLauncherPerDisplay), 1052 SINGLE_VALUE_TYPE(ash::switches::kAshDisableLauncherPerDisplay),
1046 }, 1053 },
1047 { 1054 {
1048 "disable-app-mode", 1055 "disable-app-mode",
1049 IDS_FLAGS_DISABLE_KIOSK_APPS_NAME, 1056 IDS_FLAGS_DISABLE_KIOSK_APPS_NAME,
1050 IDS_FLAGS_DISABLE_KIOSK_APPS_DESCRIPTION, 1057 IDS_FLAGS_DISABLE_KIOSK_APPS_DESCRIPTION,
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after
1842 } 1849 }
1843 1850
1844 const Experiment* GetExperiments(size_t* count) { 1851 const Experiment* GetExperiments(size_t* count) {
1845 *count = num_experiments; 1852 *count = num_experiments;
1846 return experiments; 1853 return experiments;
1847 } 1854 }
1848 1855
1849 } // namespace testing 1856 } // namespace testing
1850 1857
1851 } // namespace about_flags 1858 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698