OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2012 Google, Inc. All rights reserved. | 2 * Copyright (C) 2012 Google, Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
579 AudioContextCreateWaveShaper = 648, | 579 AudioContextCreateWaveShaper = 648, |
580 AudioContextDecodeAudioData = 649, | 580 AudioContextDecodeAudioData = 649, |
581 AudioContextResume = 650, | 581 AudioContextResume = 650, |
582 AudioContextSuspend = 651, | 582 AudioContextSuspend = 651, |
583 AudioContext = 652, | 583 AudioContext = 652, |
584 OfflineAudioContext = 653, | 584 OfflineAudioContext = 653, |
585 PrefixedAudioContext = 654, | 585 PrefixedAudioContext = 654, |
586 PrefixedOfflineAudioContext = 655, | 586 PrefixedOfflineAudioContext = 655, |
587 AddEventListenerNoArguments = 656, | 587 AddEventListenerNoArguments = 656, |
588 RemoveEventListenerNoArguments = 658, | 588 RemoveEventListenerNoArguments = 658, |
589 SRIElementWithNonMatchingIntegrityType = 660, | 589 DeprecatedSRIElementWithNonMatchingIntegrityType = 660, |
Mike West
2015/05/11 03:25:29
Nit: Just remove it. :)
jww
2015/05/11 05:39:08
Hrm, I guess that works? I thought we weren't supp
| |
590 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, | 590 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, |
591 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, | 591 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, |
592 MixedContentWebSocket = 663, | 592 MixedContentWebSocket = 663, |
593 SyntheticKeyframesInCompositedCSSAnimation = 664, | 593 SyntheticKeyframesInCompositedCSSAnimation = 664, |
594 MixedContentFormPresent = 665, | 594 MixedContentFormPresent = 665, |
595 GetUserMediaInsecureOrigin = 666, | 595 GetUserMediaInsecureOrigin = 666, |
596 GetUserMediaSecureOrigin = 667, | 596 GetUserMediaSecureOrigin = 667, |
597 // The above items are available in M41 branch. | 597 // The above items are available in M41 branch. |
598 | 598 |
599 DeviceMotionInsecureOrigin = 668, | 599 DeviceMotionInsecureOrigin = 668, |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
797 | 797 |
798 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } | 798 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } |
799 | 799 |
800 CountBits m_countBits; | 800 CountBits m_countBits; |
801 BitVector m_CSSFeatureBits; | 801 BitVector m_CSSFeatureBits; |
802 }; | 802 }; |
803 | 803 |
804 } // namespace blink | 804 } // namespace blink |
805 | 805 |
806 #endif // UseCounter_h | 806 #endif // UseCounter_h |
OLD | NEW |