OLD | NEW |
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 <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 SINGLE_VALUE_TYPE(switches::kDisableSoftwareRasterizer) | 900 SINGLE_VALUE_TYPE(switches::kDisableSoftwareRasterizer) |
901 }, | 901 }, |
902 { | 902 { |
903 "enable-experimental-web-platform-features", | 903 "enable-experimental-web-platform-features", |
904 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_NAME, | 904 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_NAME, |
905 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_DESCRIPTION, | 905 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_DESCRIPTION, |
906 kOsAll, | 906 kOsAll, |
907 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures) | 907 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures) |
908 }, | 908 }, |
909 { | 909 { |
910 "enable-css-shaders", | |
911 IDS_FLAGS_CSS_SHADERS_NAME, | |
912 IDS_FLAGS_CSS_SHADERS_DESCRIPTION, | |
913 kOsAll, | |
914 SINGLE_VALUE_TYPE(switches::kEnableCssShaders) | |
915 }, | |
916 { | |
917 "disable-ntp-other-sessions-menu", | 910 "disable-ntp-other-sessions-menu", |
918 IDS_FLAGS_NTP_OTHER_SESSIONS_MENU_NAME, | 911 IDS_FLAGS_NTP_OTHER_SESSIONS_MENU_NAME, |
919 IDS_FLAGS_NTP_OTHER_SESSIONS_MENU_DESCRIPTION, | 912 IDS_FLAGS_NTP_OTHER_SESSIONS_MENU_DESCRIPTION, |
920 kOsDesktop, | 913 kOsDesktop, |
921 SINGLE_VALUE_TYPE(switches::kDisableNTPOtherSessionsMenu) | 914 SINGLE_VALUE_TYPE(switches::kDisableNTPOtherSessionsMenu) |
922 }, | 915 }, |
923 #if defined(USE_ASH) | 916 #if defined(USE_ASH) |
924 { | 917 { |
925 "enable-ash-oak", | 918 "enable-ash-oak", |
926 IDS_FLAGS_ENABLE_ASH_OAK_NAME, | 919 IDS_FLAGS_ENABLE_ASH_OAK_NAME, |
(...skipping 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2295 } | 2288 } |
2296 | 2289 |
2297 const Experiment* GetExperiments(size_t* count) { | 2290 const Experiment* GetExperiments(size_t* count) { |
2298 *count = num_experiments; | 2291 *count = num_experiments; |
2299 return experiments; | 2292 return experiments; |
2300 } | 2293 } |
2301 | 2294 |
2302 } // namespace testing | 2295 } // namespace testing |
2303 | 2296 |
2304 } // namespace about_flags | 2297 } // namespace about_flags |
OLD | NEW |