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 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
988 kOsCrOS, | 988 kOsCrOS, |
989 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) | 989 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) |
990 }, | 990 }, |
991 { | 991 { |
992 "ash-disable-docked-windows", | 992 "ash-disable-docked-windows", |
993 IDS_FLAGS_DOCKED_WINDOWS_NAME, | 993 IDS_FLAGS_DOCKED_WINDOWS_NAME, |
994 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, | 994 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, |
995 kOsCrOS, | 995 kOsCrOS, |
996 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) | 996 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) |
997 }, | 997 }, |
| 998 { |
| 999 "ash-enable-immersive-fullscreen-all-windows", |
| 1000 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_NAME, |
| 1001 IDS_FLAGS_IMMERSIVE_FULLSCREEN_FOR_ALL_WINDOWS_DESCRIPTION, |
| 1002 kOsCrOS, |
| 1003 SINGLE_VALUE_TYPE(ash::switches::kAshEnableImmersiveFullscreenForAllWindows) |
| 1004 }, |
998 #endif | 1005 #endif |
999 { | 1006 { |
1000 "enable-download-resumption", | 1007 "enable-download-resumption", |
1001 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, | 1008 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, |
1002 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, | 1009 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, |
1003 kOsDesktop, | 1010 kOsDesktop, |
1004 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) | 1011 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) |
1005 }, | 1012 }, |
1006 { | 1013 { |
1007 "allow-nacl-socket-api", | 1014 "allow-nacl-socket-api", |
(...skipping 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2324 } | 2331 } |
2325 | 2332 |
2326 const Experiment* GetExperiments(size_t* count) { | 2333 const Experiment* GetExperiments(size_t* count) { |
2327 *count = num_experiments; | 2334 *count = num_experiments; |
2328 return experiments; | 2335 return experiments; |
2329 } | 2336 } |
2330 | 2337 |
2331 } // namespace testing | 2338 } // namespace testing |
2332 | 2339 |
2333 } // namespace about_flags | 2340 } // namespace about_flags |
OLD | NEW |