| 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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 AudioContextCreateScriptProcessor = 646, | 535 AudioContextCreateScriptProcessor = 646, |
| 536 AudioContextCreateStereoPanner = 647, | 536 AudioContextCreateStereoPanner = 647, |
| 537 AudioContextCreateWaveShaper = 648, | 537 AudioContextCreateWaveShaper = 648, |
| 538 AudioContextDecodeAudioData = 649, | 538 AudioContextDecodeAudioData = 649, |
| 539 AudioContextResume = 650, | 539 AudioContextResume = 650, |
| 540 AudioContextSuspend = 651, | 540 AudioContextSuspend = 651, |
| 541 AudioContext = 652, | 541 AudioContext = 652, |
| 542 OfflineAudioContext = 653, | 542 OfflineAudioContext = 653, |
| 543 PrefixedAudioContext = 654, | 543 PrefixedAudioContext = 654, |
| 544 PrefixedOfflineAudioContext = 655, | 544 PrefixedOfflineAudioContext = 655, |
| 545 AddEventListenerNoArguments = 656, | |
| 546 AddEventListenerOneArgument = 657, | |
| 547 RemoveEventListenerNoArguments = 658, | |
| 548 RemoveEventListenerOneArgument = 659, | |
| 549 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, | 545 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, |
| 550 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, | 546 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, |
| 551 MixedContentWebSocket = 663, | 547 MixedContentWebSocket = 663, |
| 552 SyntheticKeyframesInCompositedCSSAnimation = 664, | 548 SyntheticKeyframesInCompositedCSSAnimation = 664, |
| 553 MixedContentFormPresent = 665, | 549 MixedContentFormPresent = 665, |
| 554 GetUserMediaInsecureOrigin = 666, | 550 GetUserMediaInsecureOrigin = 666, |
| 555 GetUserMediaSecureOrigin = 667, | 551 GetUserMediaSecureOrigin = 667, |
| 556 // The above items are available in M41 branch. | 552 // The above items are available in M41 branch. |
| 557 | 553 |
| 558 DeviceMotionInsecureOrigin = 668, | 554 DeviceMotionInsecureOrigin = 668, |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 | 981 |
| 986 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } | 982 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } |
| 987 | 983 |
| 988 CountBits m_countBits; | 984 CountBits m_countBits; |
| 989 BitVector m_CSSFeatureBits; | 985 BitVector m_CSSFeatureBits; |
| 990 }; | 986 }; |
| 991 | 987 |
| 992 } // namespace blink | 988 } // namespace blink |
| 993 | 989 |
| 994 #endif // UseCounter_h | 990 #endif // UseCounter_h |
| OLD | NEW |