| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 SINGLE_VALUE_TYPE(switches::kEnableSpdy4) | 691 SINGLE_VALUE_TYPE(switches::kEnableSpdy4) |
| 692 }, | 692 }, |
| 693 { | 693 { |
| 694 "disable-media-source", | 694 "disable-media-source", |
| 695 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, | 695 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, |
| 696 IDS_FLAGS_DISABLE_MEDIA_SOURCE_DESCRIPTION, | 696 IDS_FLAGS_DISABLE_MEDIA_SOURCE_DESCRIPTION, |
| 697 kOsAll, | 697 kOsAll, |
| 698 SINGLE_VALUE_TYPE(switches::kDisableMediaSource) | 698 SINGLE_VALUE_TYPE(switches::kDisableMediaSource) |
| 699 }, | 699 }, |
| 700 { | 700 { |
| 701 "enable-encrypted-media", | 701 "disable-encrypted-media", |
| 702 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_NAME, | 702 IDS_FLAGS_DISABLE_ENCRYPTED_MEDIA_NAME, |
| 703 IDS_FLAGS_ENABLE_ENCRYPTED_MEDIA_DESCRIPTION, | 703 IDS_FLAGS_DISABLE_ENCRYPTED_MEDIA_DESCRIPTION, |
| 704 kOsAll, | 704 kOsAll, |
| 705 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) | 705 SINGLE_VALUE_TYPE(switches::kDisableEncryptedMedia) |
| 706 }, | 706 }, |
| 707 { | 707 { |
| 708 "disable-prefixed-encrypted-media", | 708 "disable-prefixed-encrypted-media", |
| 709 IDS_FLAGS_DISABLE_PREFIXED_ENCRYPTED_MEDIA_NAME, | 709 IDS_FLAGS_DISABLE_PREFIXED_ENCRYPTED_MEDIA_NAME, |
| 710 IDS_FLAGS_DISABLE_PREFIXED_ENCRYPTED_MEDIA_DESCRIPTION, | 710 IDS_FLAGS_DISABLE_PREFIXED_ENCRYPTED_MEDIA_DESCRIPTION, |
| 711 kOsAll, | 711 kOsAll, |
| 712 SINGLE_VALUE_TYPE(switches::kDisablePrefixedEncryptedMedia) | 712 SINGLE_VALUE_TYPE(switches::kDisablePrefixedEncryptedMedia) |
| 713 }, | 713 }, |
| 714 #if defined(OS_ANDROID) | 714 #if defined(OS_ANDROID) |
| 715 { | 715 { |
| (...skipping 2010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2726 } | 2726 } |
| 2727 | 2727 |
| 2728 const Experiment* GetExperiments(size_t* count) { | 2728 const Experiment* GetExperiments(size_t* count) { |
| 2729 *count = num_experiments; | 2729 *count = num_experiments; |
| 2730 return experiments; | 2730 return experiments; |
| 2731 } | 2731 } |
| 2732 | 2732 |
| 2733 } // namespace testing | 2733 } // namespace testing |
| 2734 | 2734 |
| 2735 } // namespace about_flags | 2735 } // namespace about_flags |
| OLD | NEW |