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 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragOffShelf) | 996 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragOffShelf) |
997 }, | 997 }, |
998 { | 998 { |
999 "enable-background-loader", | 999 "enable-background-loader", |
1000 IDS_ENABLE_BACKLOADER_NAME, | 1000 IDS_ENABLE_BACKLOADER_NAME, |
1001 IDS_ENABLE_BACKLOADER_DESCRIPTION, | 1001 IDS_ENABLE_BACKLOADER_DESCRIPTION, |
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-disable-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::kAshDisableDockedWindows) |
1011 }, | 1011 }, |
1012 #endif | 1012 #endif |
1013 { | 1013 { |
1014 "enable-download-resumption", | 1014 "enable-download-resumption", |
1015 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, | 1015 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, |
1016 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, | 1016 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, |
1017 kOsDesktop, | 1017 kOsDesktop, |
1018 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) | 1018 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) |
1019 }, | 1019 }, |
1020 { | 1020 { |
(...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2339 } | 2339 } |
2340 | 2340 |
2341 const Experiment* GetExperiments(size_t* count) { | 2341 const Experiment* GetExperiments(size_t* count) { |
2342 *count = num_experiments; | 2342 *count = num_experiments; |
2343 return experiments; | 2343 return experiments; |
2344 } | 2344 } |
2345 | 2345 |
2346 } // namespace testing | 2346 } // namespace testing |
2347 | 2347 |
2348 } // namespace about_flags | 2348 } // namespace about_flags |
OLD | NEW |