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