| 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 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 939 }, | 939 }, |
| 940 { | 940 { |
| 941 "disable-touch-adjustment", | 941 "disable-touch-adjustment", |
| 942 IDS_DISABLE_TOUCH_ADJUSTMENT_NAME, | 942 IDS_DISABLE_TOUCH_ADJUSTMENT_NAME, |
| 943 IDS_DISABLE_TOUCH_ADJUSTMENT_DESCRIPTION, | 943 IDS_DISABLE_TOUCH_ADJUSTMENT_DESCRIPTION, |
| 944 kOsWin | kOsLinux | kOsCrOS, | 944 kOsWin | kOsLinux | kOsCrOS, |
| 945 SINGLE_VALUE_TYPE(switches::kDisableTouchAdjustment) | 945 SINGLE_VALUE_TYPE(switches::kDisableTouchAdjustment) |
| 946 }, | 946 }, |
| 947 #if defined(OS_CHROMEOS) | 947 #if defined(OS_CHROMEOS) |
| 948 { | 948 { |
| 949 "ash-use-alternate-shelf", | |
| 950 IDS_FLAGS_ALTERNATE_SHELF_LAYOUT_NAME, | |
| 951 IDS_FLAGS_ALTERNATE_SHELF_LAYOUT_DESCRIPTION, | |
| 952 kOsCrOS, | |
| 953 ENABLE_DISABLE_VALUE_TYPE(ash::switches::kAshUseAlternateShelfLayout, | |
| 954 ash::switches::kAshDisableAlternateShelfLayout) | |
| 955 }, | |
| 956 { | |
| 957 "ash-disable-docked-windows", | 949 "ash-disable-docked-windows", |
| 958 IDS_FLAGS_DOCKED_WINDOWS_NAME, | 950 IDS_FLAGS_DOCKED_WINDOWS_NAME, |
| 959 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, | 951 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, |
| 960 kOsCrOS, | 952 kOsCrOS, |
| 961 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) | 953 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) |
| 962 }, | 954 }, |
| 963 { | 955 { |
| 964 "network-portal-notification", | 956 "network-portal-notification", |
| 965 IDS_FLAGS_NETWORK_PORTAL_NOTIFICATION_NAME, | 957 IDS_FLAGS_NETWORK_PORTAL_NOTIFICATION_NAME, |
| 966 IDS_FLAGS_NETWORK_PORTAL_NOTIFICATION_DESCRIPTION, | 958 IDS_FLAGS_NETWORK_PORTAL_NOTIFICATION_DESCRIPTION, |
| (...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2326 } | 2318 } |
| 2327 | 2319 |
| 2328 const Experiment* GetExperiments(size_t* count) { | 2320 const Experiment* GetExperiments(size_t* count) { |
| 2329 *count = num_experiments; | 2321 *count = num_experiments; |
| 2330 return experiments; | 2322 return experiments; |
| 2331 } | 2323 } |
| 2332 | 2324 |
| 2333 } // namespace testing | 2325 } // namespace testing |
| 2334 | 2326 |
| 2335 } // namespace about_flags | 2327 } // namespace about_flags |
| OLD | NEW |