OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 "ppapi-flash-in-process", | 275 "ppapi-flash-in-process", |
276 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_NAME, | 276 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_NAME, |
277 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_DESCRIPTION, | 277 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_DESCRIPTION, |
278 kOsAll, | 278 kOsAll, |
279 SINGLE_VALUE_TYPE(switches::kPpapiFlashInProcess) | 279 SINGLE_VALUE_TYPE(switches::kPpapiFlashInProcess) |
280 }, | 280 }, |
281 { | 281 { |
282 "multi-profiles", | 282 "multi-profiles", |
283 IDS_FLAGS_MULTI_PROFILES_NAME, | 283 IDS_FLAGS_MULTI_PROFILES_NAME, |
284 IDS_FLAGS_MULTI_PROFILES_DESCRIPTION, | 284 IDS_FLAGS_MULTI_PROFILES_DESCRIPTION, |
285 kOsMac | kOsLinux, // This switch is not available in CrOS. | 285 kOsWin | kOsMac | kOsLinux, // This switch is not available in CrOS. |
286 SINGLE_VALUE_TYPE(switches::kMultiProfiles) | 286 SINGLE_VALUE_TYPE(switches::kMultiProfiles) |
287 }, | 287 }, |
288 { | 288 { |
289 "restrict-instant-to-search", | 289 "restrict-instant-to-search", |
290 IDS_FLAGS_RESTRICT_INSTANT_TO_SEARCH_NAME, | 290 IDS_FLAGS_RESTRICT_INSTANT_TO_SEARCH_NAME, |
291 IDS_FLAGS_RESTRICT_INSTANT_TO_SEARCH_DESCRIPTION, | 291 IDS_FLAGS_RESTRICT_INSTANT_TO_SEARCH_DESCRIPTION, |
292 kOsAll, | 292 kOsAll, |
293 SINGLE_VALUE_TYPE(switches::kRestrictInstantToSearch) | 293 SINGLE_VALUE_TYPE(switches::kRestrictInstantToSearch) |
294 }, | 294 }, |
295 { | 295 { |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 } | 802 } |
803 | 803 |
804 const Experiment* GetExperiments(size_t* count) { | 804 const Experiment* GetExperiments(size_t* count) { |
805 *count = num_experiments; | 805 *count = num_experiments; |
806 return experiments; | 806 return experiments; |
807 } | 807 } |
808 | 808 |
809 } // namespace testing | 809 } // namespace testing |
810 | 810 |
811 } // namespace about_flags | 811 } // namespace about_flags |
OLD | NEW |