| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 SubFrameBeforeUnloadRegistered = 97, | 135 SubFrameBeforeUnloadRegistered = 97, |
| 136 SubFrameBeforeUnloadFired = 98, | 136 SubFrameBeforeUnloadFired = 98, |
| 137 ConsoleMarkTimeline = 102, | 137 ConsoleMarkTimeline = 102, |
| 138 ElementGetAttributeNode = 107, | 138 ElementGetAttributeNode = 107, |
| 139 ElementSetAttributeNode = 108, | 139 ElementSetAttributeNode = 108, |
| 140 ElementRemoveAttributeNode = 109, | 140 ElementRemoveAttributeNode = 109, |
| 141 ElementGetAttributeNodeNS = 110, | 141 ElementGetAttributeNodeNS = 110, |
| 142 DocumentCreateAttribute = 111, | 142 DocumentCreateAttribute = 111, |
| 143 DocumentCreateAttributeNS = 112, | 143 DocumentCreateAttributeNS = 112, |
| 144 DocumentCreateCDATASection = 113, // Removed from DOM4. | 144 DocumentCreateCDATASection = 113, // Removed from DOM4. |
| 145 DocumentInputEncoding = 114, | |
| 146 DocumentXMLEncoding = 115, // Removed from DOM4. | 145 DocumentXMLEncoding = 115, // Removed from DOM4. |
| 147 DocumentXMLStandalone = 116, // Removed from DOM4. | 146 DocumentXMLStandalone = 116, // Removed from DOM4. |
| 148 DocumentXMLVersion = 117, // Removed from DOM4. | 147 DocumentXMLVersion = 117, // Removed from DOM4. |
| 149 NodeIsSameNode = 118, // Removed from DOM4. | 148 NodeIsSameNode = 118, // Removed from DOM4. |
| 150 NavigatorProductSub = 123, | 149 NavigatorProductSub = 123, |
| 151 NavigatorVendor = 124, | 150 NavigatorVendor = 124, |
| 152 NavigatorVendorSub = 125, | 151 NavigatorVendorSub = 125, |
| 153 FileError = 126, | 152 FileError = 126, |
| 154 DocumentCharset = 127, // Documented as IE extensions = 0, from KHTML da
ys. | |
| 155 PrefixedAnimationEndEvent = 128, | 153 PrefixedAnimationEndEvent = 128, |
| 156 UnprefixedAnimationEndEvent = 129, | 154 UnprefixedAnimationEndEvent = 129, |
| 157 PrefixedAndUnprefixedAnimationEndEvent = 130, | 155 PrefixedAndUnprefixedAnimationEndEvent = 130, |
| 158 PrefixedAnimationStartEvent = 131, | 156 PrefixedAnimationStartEvent = 131, |
| 159 UnprefixedAnimationStartEvent = 132, | 157 UnprefixedAnimationStartEvent = 132, |
| 160 PrefixedAndUnprefixedAnimationStartEvent = 133, | 158 PrefixedAndUnprefixedAnimationStartEvent = 133, |
| 161 PrefixedAnimationIterationEvent = 134, | 159 PrefixedAnimationIterationEvent = 134, |
| 162 UnprefixedAnimationIterationEvent = 135, | 160 UnprefixedAnimationIterationEvent = 135, |
| 163 PrefixedAndUnprefixedAnimationIterationEvent = 136, | 161 PrefixedAndUnprefixedAnimationIterationEvent = 136, |
| 164 EventReturnValue = 137, // Legacy IE extension. | 162 EventReturnValue = 137, // Legacy IE extension. |
| (...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 | 936 |
| 939 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } | 937 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } |
| 940 | 938 |
| 941 CountBits m_countBits; | 939 CountBits m_countBits; |
| 942 BitVector m_CSSFeatureBits; | 940 BitVector m_CSSFeatureBits; |
| 943 }; | 941 }; |
| 944 | 942 |
| 945 } // namespace blink | 943 } // namespace blink |
| 946 | 944 |
| 947 #endif // UseCounter_h | 945 #endif // UseCounter_h |
| OLD | NEW |