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 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
950 ash::switches::kAshDisableAlternateShelfLayout) | 950 ash::switches::kAshDisableAlternateShelfLayout) |
951 }, | 951 }, |
952 { | 952 { |
953 "ash-disable-drag-off-shelf", | 953 "ash-disable-drag-off-shelf", |
954 IDS_FLAGS_DRAG_OFF_SHELF_NAME, | 954 IDS_FLAGS_DRAG_OFF_SHELF_NAME, |
955 IDS_FLAGS_DRAG_OFF_SHELF_DESCRIPTION, | 955 IDS_FLAGS_DRAG_OFF_SHELF_DESCRIPTION, |
956 kOsCrOS, | 956 kOsCrOS, |
957 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragOffShelf) | 957 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragOffShelf) |
958 }, | 958 }, |
959 { | 959 { |
960 "enable-background-loader", | |
961 IDS_ENABLE_BACKLOADER_NAME, | |
962 IDS_ENABLE_BACKLOADER_DESCRIPTION, | |
963 kOsCrOS, | |
964 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) | |
965 }, | |
966 { | |
967 "ash-disable-docked-windows", | 960 "ash-disable-docked-windows", |
968 IDS_FLAGS_DOCKED_WINDOWS_NAME, | 961 IDS_FLAGS_DOCKED_WINDOWS_NAME, |
969 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, | 962 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, |
970 kOsCrOS, | 963 kOsCrOS, |
971 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) | 964 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) |
972 }, | 965 }, |
973 { | 966 { |
974 "ash-enable-immersive-fullscreen-all-windows2", | 967 "ash-enable-immersive-fullscreen-all-windows2", |
975 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_NAME, | 968 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_NAME, |
976 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_DESCRIPTION, | 969 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_DESCRIPTION, |
(...skipping 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2408 } | 2401 } |
2409 | 2402 |
2410 const Experiment* GetExperiments(size_t* count) { | 2403 const Experiment* GetExperiments(size_t* count) { |
2411 *count = num_experiments; | 2404 *count = num_experiments; |
2412 return experiments; | 2405 return experiments; |
2413 } | 2406 } |
2414 | 2407 |
2415 } // namespace testing | 2408 } // namespace testing |
2416 | 2409 |
2417 } // namespace about_flags | 2410 } // namespace about_flags |
OLD | NEW |