| 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 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragOffShelf) | 995 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragOffShelf) |
| 996 }, | 996 }, |
| 997 { | 997 { |
| 998 "enable-background-loader", | 998 "enable-background-loader", |
| 999 IDS_ENABLE_BACKLOADER_NAME, | 999 IDS_ENABLE_BACKLOADER_NAME, |
| 1000 IDS_ENABLE_BACKLOADER_DESCRIPTION, | 1000 IDS_ENABLE_BACKLOADER_DESCRIPTION, |
| 1001 kOsCrOS, | 1001 kOsCrOS, |
| 1002 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) | 1002 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) |
| 1003 }, | 1003 }, |
| 1004 { | 1004 { |
| 1005 "ash-enable-docked-windows", | 1005 "ash-disable-docked-windows", |
| 1006 IDS_FLAGS_DOCKED_WINDOWS_NAME, | 1006 IDS_FLAGS_DOCKED_WINDOWS_NAME, |
| 1007 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, | 1007 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, |
| 1008 kOsCrOS, | 1008 kOsCrOS, |
| 1009 SINGLE_VALUE_TYPE(ash::switches::kAshEnableDockedWindows) | 1009 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) |
| 1010 }, | 1010 }, |
| 1011 #endif | 1011 #endif |
| 1012 { | 1012 { |
| 1013 "enable-download-resumption", | 1013 "enable-download-resumption", |
| 1014 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, | 1014 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, |
| 1015 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, | 1015 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, |
| 1016 kOsDesktop, | 1016 kOsDesktop, |
| 1017 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) | 1017 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) |
| 1018 }, | 1018 }, |
| 1019 { | 1019 { |
| (...skipping 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2322 } | 2322 } |
| 2323 | 2323 |
| 2324 const Experiment* GetExperiments(size_t* count) { | 2324 const Experiment* GetExperiments(size_t* count) { |
| 2325 *count = num_experiments; | 2325 *count = num_experiments; |
| 2326 return experiments; | 2326 return experiments; |
| 2327 } | 2327 } |
| 2328 | 2328 |
| 2329 } // namespace testing | 2329 } // namespace testing |
| 2330 | 2330 |
| 2331 } // namespace about_flags | 2331 } // namespace about_flags |
| OLD | NEW |