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 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
998 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragOffShelf) | 998 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragOffShelf) |
999 }, | 999 }, |
1000 { | 1000 { |
1001 "enable-background-loader", | 1001 "enable-background-loader", |
1002 IDS_ENABLE_BACKLOADER_NAME, | 1002 IDS_ENABLE_BACKLOADER_NAME, |
1003 IDS_ENABLE_BACKLOADER_DESCRIPTION, | 1003 IDS_ENABLE_BACKLOADER_DESCRIPTION, |
1004 kOsCrOS, | 1004 kOsCrOS, |
1005 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) | 1005 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) |
1006 }, | 1006 }, |
1007 { | 1007 { |
1008 "ash-disable-docked-windows", | 1008 "ash-enable-docked-windows", |
1009 IDS_FLAGS_DOCKED_WINDOWS_NAME, | 1009 IDS_FLAGS_DOCKED_WINDOWS_NAME, |
1010 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, | 1010 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, |
1011 kOsCrOS, | 1011 kOsCrOS, |
1012 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) | 1012 SINGLE_VALUE_TYPE(ash::switches::kAshEnableDockedWindows) |
1013 }, | 1013 }, |
1014 { | 1014 { |
1015 "ash-enable-immersive-fullscreen-all-windows", | 1015 "ash-enable-immersive-fullscreen-all-windows", |
1016 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_NAME, | 1016 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_NAME, |
1017 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_DESCRIPTION, | 1017 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_DESCRIPTION, |
1018 kOsCrOS, | 1018 kOsCrOS, |
1019 SINGLE_VALUE_TYPE(ash::switches::kAshEnableImmersiveFullscreenForAllWindows) | 1019 SINGLE_VALUE_TYPE(ash::switches::kAshEnableImmersiveFullscreenForAllWindows) |
1020 }, | 1020 }, |
1021 #endif | 1021 #endif |
1022 { | 1022 { |
(...skipping 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2397 } | 2397 } |
2398 | 2398 |
2399 const Experiment* GetExperiments(size_t* count) { | 2399 const Experiment* GetExperiments(size_t* count) { |
2400 *count = num_experiments; | 2400 *count = num_experiments; |
2401 return experiments; | 2401 return experiments; |
2402 } | 2402 } |
2403 | 2403 |
2404 } // namespace testing | 2404 } // namespace testing |
2405 | 2405 |
2406 } // namespace about_flags | 2406 } // namespace about_flags |
OLD | NEW |