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 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 kOsCrOS, | 995 kOsCrOS, |
996 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) | 996 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) |
997 }, | 997 }, |
998 { | 998 { |
999 "ash-disable-docked-windows", | 999 "ash-disable-docked-windows", |
1000 IDS_FLAGS_DOCKED_WINDOWS_NAME, | 1000 IDS_FLAGS_DOCKED_WINDOWS_NAME, |
1001 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, | 1001 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, |
1002 kOsCrOS, | 1002 kOsCrOS, |
1003 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) | 1003 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) |
1004 }, | 1004 }, |
| 1005 { |
| 1006 "ash-enable-immersive-fullscreen-all-windows", |
| 1007 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_NAME, |
| 1008 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_DESCRIPTION, |
| 1009 kOsCrOS, |
| 1010 SINGLE_VALUE_TYPE(ash::switches::kAshEnableImmersiveFullscreenForAllWindows) |
| 1011 }, |
1005 #endif | 1012 #endif |
1006 { | 1013 { |
1007 "enable-download-resumption", | 1014 "enable-download-resumption", |
1008 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, | 1015 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, |
1009 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, | 1016 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, |
1010 kOsDesktop, | 1017 kOsDesktop, |
1011 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) | 1018 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) |
1012 }, | 1019 }, |
1013 { | 1020 { |
1014 "allow-nacl-socket-api", | 1021 "allow-nacl-socket-api", |
(...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2332 } | 2339 } |
2333 | 2340 |
2334 const Experiment* GetExperiments(size_t* count) { | 2341 const Experiment* GetExperiments(size_t* count) { |
2335 *count = num_experiments; | 2342 *count = num_experiments; |
2336 return experiments; | 2343 return experiments; |
2337 } | 2344 } |
2338 | 2345 |
2339 } // namespace testing | 2346 } // namespace testing |
2340 | 2347 |
2341 } // namespace about_flags | 2348 } // namespace about_flags |
OLD | NEW |