| 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 AudioContextCreateStereoPanner = 647, | 587 AudioContextCreateStereoPanner = 647, |
| 588 AudioContextCreateWaveShaper = 648, | 588 AudioContextCreateWaveShaper = 648, |
| 589 AudioContextDecodeAudioData = 649, | 589 AudioContextDecodeAudioData = 649, |
| 590 AudioContextResume = 650, | 590 AudioContextResume = 650, |
| 591 AudioContextSuspend = 651, | 591 AudioContextSuspend = 651, |
| 592 AudioContext = 652, | 592 AudioContext = 652, |
| 593 OfflineAudioContext = 653, | 593 OfflineAudioContext = 653, |
| 594 PrefixedAudioContext = 654, | 594 PrefixedAudioContext = 654, |
| 595 PrefixedOfflineAudioContext = 655, | 595 PrefixedOfflineAudioContext = 655, |
| 596 AddEventListenerNoArguments = 656, | 596 AddEventListenerNoArguments = 656, |
| 597 AddEventListenerOneArgument = 657, | |
| 598 RemoveEventListenerNoArguments = 658, | 597 RemoveEventListenerNoArguments = 658, |
| 599 RemoveEventListenerOneArgument = 659, | |
| 600 SRIElementWithNonMatchingIntegrityType = 660, | 598 SRIElementWithNonMatchingIntegrityType = 660, |
| 601 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, | 599 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, |
| 602 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, | 600 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, |
| 603 MixedContentWebSocket = 663, | 601 MixedContentWebSocket = 663, |
| 604 SyntheticKeyframesInCompositedCSSAnimation = 664, | 602 SyntheticKeyframesInCompositedCSSAnimation = 664, |
| 605 MixedContentFormPresent = 665, | 603 MixedContentFormPresent = 665, |
| 606 GetUserMediaInsecureOrigin = 666, | 604 GetUserMediaInsecureOrigin = 666, |
| 607 GetUserMediaSecureOrigin = 667, | 605 GetUserMediaSecureOrigin = 667, |
| 608 // The above items are available in M41 branch. | 606 // The above items are available in M41 branch. |
| 609 | 607 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 bool recordMeasurement(Feature feature) { return m_countBits.recordMeasureme
nt(feature); } | 711 bool recordMeasurement(Feature feature) { return m_countBits.recordMeasureme
nt(feature); } |
| 714 void updateMeasurements(); | 712 void updateMeasurements(); |
| 715 | 713 |
| 716 CountBits m_countBits; | 714 CountBits m_countBits; |
| 717 BitVector m_CSSFeatureBits; | 715 BitVector m_CSSFeatureBits; |
| 718 }; | 716 }; |
| 719 | 717 |
| 720 } // namespace blink | 718 } // namespace blink |
| 721 | 719 |
| 722 #endif // UseCounter_h | 720 #endif // UseCounter_h |
| OLD | NEW |