| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 ElementRemoveAttributeNode = 109, | 139 ElementRemoveAttributeNode = 109, |
| 140 ElementGetAttributeNodeNS = 110, | 140 ElementGetAttributeNodeNS = 110, |
| 141 DocumentCreateAttribute = 111, | 141 DocumentCreateAttribute = 111, |
| 142 DocumentCreateAttributeNS = 112, | 142 DocumentCreateAttributeNS = 112, |
| 143 DocumentCreateCDATASection = 113, // Removed from DOM4. | 143 DocumentCreateCDATASection = 113, // Removed from DOM4. |
| 144 DocumentInputEncoding = 114, | 144 DocumentInputEncoding = 114, |
| 145 DocumentXMLEncoding = 115, // Removed from DOM4. | 145 DocumentXMLEncoding = 115, // Removed from DOM4. |
| 146 DocumentXMLStandalone = 116, // Removed from DOM4. | 146 DocumentXMLStandalone = 116, // Removed from DOM4. |
| 147 DocumentXMLVersion = 117, // Removed from DOM4. | 147 DocumentXMLVersion = 117, // Removed from DOM4. |
| 148 NodeIsSameNode = 118, // Removed from DOM4. | 148 NodeIsSameNode = 118, // Removed from DOM4. |
| 149 NodeNamespaceURI = 120, // Removed from DOM4. | |
| 150 NodeLocalName = 122, // Removed from DOM4. | |
| 151 NavigatorProductSub = 123, | 149 NavigatorProductSub = 123, |
| 152 NavigatorVendor = 124, | 150 NavigatorVendor = 124, |
| 153 NavigatorVendorSub = 125, | 151 NavigatorVendorSub = 125, |
| 154 FileError = 126, | 152 FileError = 126, |
| 155 DocumentCharset = 127, // Documented as IE extensions = 0, from KHTML da
ys. | 153 DocumentCharset = 127, // Documented as IE extensions = 0, from KHTML da
ys. |
| 156 PrefixedAnimationEndEvent = 128, | 154 PrefixedAnimationEndEvent = 128, |
| 157 UnprefixedAnimationEndEvent = 129, | 155 UnprefixedAnimationEndEvent = 129, |
| 158 PrefixedAndUnprefixedAnimationEndEvent = 130, | 156 PrefixedAndUnprefixedAnimationEndEvent = 130, |
| 159 PrefixedAnimationStartEvent = 131, | 157 PrefixedAnimationStartEvent = 131, |
| 160 UnprefixedAnimationStartEvent = 132, | 158 UnprefixedAnimationStartEvent = 132, |
| (...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 | 887 |
| 890 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } | 888 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } |
| 891 | 889 |
| 892 CountBits m_countBits; | 890 CountBits m_countBits; |
| 893 BitVector m_CSSFeatureBits; | 891 BitVector m_CSSFeatureBits; |
| 894 }; | 892 }; |
| 895 | 893 |
| 896 } // namespace blink | 894 } // namespace blink |
| 897 | 895 |
| 898 #endif // UseCounter_h | 896 #endif // UseCounter_h |
| OLD | NEW |