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 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 #if defined(USE_ASH) | 911 #if defined(USE_ASH) |
912 { "ash-enable-advanced-gestures", | 912 { "ash-enable-advanced-gestures", |
913 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, | 913 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, |
914 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, | 914 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, |
915 kOsCrOS, | 915 kOsCrOS, |
916 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), | 916 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), |
917 }, | 917 }, |
918 #endif | 918 #endif |
919 #if defined(OS_CHROMEOS) | 919 #if defined(OS_CHROMEOS) |
920 { | 920 { |
| 921 "enable-carrier-switching", |
| 922 IDS_FLAGS_ENABLE_CARRIER_SWITCHING, |
| 923 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION, |
| 924 kOsCrOS, |
| 925 SINGLE_VALUE_TYPE(switches::kEnableCarrierSwitching) |
| 926 }, |
| 927 { |
921 "enable-request-tablet-site", | 928 "enable-request-tablet-site", |
922 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME, | 929 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME, |
923 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_DESCRIPTION, | 930 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_DESCRIPTION, |
924 kOsCrOS, | 931 kOsCrOS, |
925 SINGLE_VALUE_TYPE(switches::kEnableRequestTabletSite) | 932 SINGLE_VALUE_TYPE(switches::kEnableRequestTabletSite) |
926 }, | 933 }, |
927 #endif | 934 #endif |
928 { | 935 { |
929 "debug-packed-apps", | 936 "debug-packed-apps", |
930 IDS_FLAGS_DEBUG_PACKED_APP_NAME, | 937 IDS_FLAGS_DEBUG_PACKED_APP_NAME, |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1368 } | 1375 } |
1369 | 1376 |
1370 const Experiment* GetExperiments(size_t* count) { | 1377 const Experiment* GetExperiments(size_t* count) { |
1371 *count = num_experiments; | 1378 *count = num_experiments; |
1372 return experiments; | 1379 return experiments; |
1373 } | 1380 } |
1374 | 1381 |
1375 } // namespace testing | 1382 } // namespace testing |
1376 | 1383 |
1377 } // namespace about_flags | 1384 } // namespace about_flags |
OLD | NEW |