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 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1002 kOsCrOS, | 1002 kOsCrOS, |
1003 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) | 1003 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) |
1004 }, | 1004 }, |
1005 { | 1005 { |
1006 "ash-enable-docked-windows", | 1006 "ash-enable-docked-windows", |
1007 IDS_FLAGS_DOCKED_WINDOWS_NAME, | 1007 IDS_FLAGS_DOCKED_WINDOWS_NAME, |
1008 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, | 1008 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, |
1009 kOsCrOS, | 1009 kOsCrOS, |
1010 SINGLE_VALUE_TYPE(ash::switches::kAshEnableDockedWindows) | 1010 SINGLE_VALUE_TYPE(ash::switches::kAshEnableDockedWindows) |
1011 }, | 1011 }, |
| 1012 { |
| 1013 "ash-enable-app-immersive-fullscreen", |
| 1014 IDS_FLAGS_APP_IMMERSIVE_FULLSCREEN_NAME, |
| 1015 IDS_FLAGS_APP_IMMERSIVE_FULLSCREEN_DESCRIPTION, |
| 1016 kOsCrOS, |
| 1017 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAppImmersiveFullscreen) |
| 1018 }, |
1012 #endif | 1019 #endif |
1013 { | 1020 { |
1014 "enable-download-resumption", | 1021 "enable-download-resumption", |
1015 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, | 1022 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, |
1016 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, | 1023 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, |
1017 kOsDesktop, | 1024 kOsDesktop, |
1018 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) | 1025 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) |
1019 }, | 1026 }, |
1020 { | 1027 { |
1021 "allow-nacl-socket-api", | 1028 "allow-nacl-socket-api", |
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2346 } | 2353 } |
2347 | 2354 |
2348 const Experiment* GetExperiments(size_t* count) { | 2355 const Experiment* GetExperiments(size_t* count) { |
2349 *count = num_experiments; | 2356 *count = num_experiments; |
2350 return experiments; | 2357 return experiments; |
2351 } | 2358 } |
2352 | 2359 |
2353 } // namespace testing | 2360 } // namespace testing |
2354 | 2361 |
2355 } // namespace about_flags | 2362 } // namespace about_flags |
OLD | NEW |