Chromium Code Reviews| 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 553 AudioContextCreateStereoPanner = 647, | 553 AudioContextCreateStereoPanner = 647, |
| 554 AudioContextCreateWaveShaper = 648, | 554 AudioContextCreateWaveShaper = 648, |
| 555 AudioContextDecodeAudioData = 649, | 555 AudioContextDecodeAudioData = 649, |
| 556 AudioContextResume = 650, | 556 AudioContextResume = 650, |
| 557 AudioContextSuspend = 651, | 557 AudioContextSuspend = 651, |
| 558 AudioContext = 652, | 558 AudioContext = 652, |
| 559 OfflineAudioContext = 653, | 559 OfflineAudioContext = 653, |
| 560 PrefixedAudioContext = 654, | 560 PrefixedAudioContext = 654, |
| 561 PrefixedOfflineAudioContext = 655, | 561 PrefixedOfflineAudioContext = 655, |
| 562 AddEventListenerNoArguments = 656, | 562 AddEventListenerNoArguments = 656, |
| 563 AddEventListenerOneArgument = 657, | |
|
haraken
2015/07/09 23:37:58
I'm wondering why the entry 657 and 659 were missi
philipj_slow
2015/07/10 07:46:46
These were the original entries for 657 and 659, b
| |
| 563 RemoveEventListenerNoArguments = 658, | 564 RemoveEventListenerNoArguments = 658, |
| 565 RemoveEventListenerOneArgument = 659, | |
| 564 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, | 566 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, |
| 565 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, | 567 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, |
| 566 MixedContentWebSocket = 663, | 568 MixedContentWebSocket = 663, |
| 567 SyntheticKeyframesInCompositedCSSAnimation = 664, | 569 SyntheticKeyframesInCompositedCSSAnimation = 664, |
| 568 MixedContentFormPresent = 665, | 570 MixedContentFormPresent = 665, |
| 569 GetUserMediaInsecureOrigin = 666, | 571 GetUserMediaInsecureOrigin = 666, |
| 570 GetUserMediaSecureOrigin = 667, | 572 GetUserMediaSecureOrigin = 667, |
| 571 // The above items are available in M41 branch. | 573 // The above items are available in M41 branch. |
| 572 | 574 |
| 573 DeviceMotionInsecureOrigin = 668, | 575 DeviceMotionInsecureOrigin = 668, |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 866 | 868 |
| 867 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } | 869 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } |
| 868 | 870 |
| 869 CountBits m_countBits; | 871 CountBits m_countBits; |
| 870 BitVector m_CSSFeatureBits; | 872 BitVector m_CSSFeatureBits; |
| 871 }; | 873 }; |
| 872 | 874 |
| 873 } // namespace blink | 875 } // namespace blink |
| 874 | 876 |
| 875 #endif // UseCounter_h | 877 #endif // UseCounter_h |
| OLD | NEW |