| 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 ElementGetAttributeNode = 107, | 135 ElementGetAttributeNode = 107, |
| 136 ElementSetAttributeNode = 108, | 136 ElementSetAttributeNode = 108, |
| 137 ElementRemoveAttributeNode = 109, | 137 ElementRemoveAttributeNode = 109, |
| 138 ElementGetAttributeNodeNS = 110, | 138 ElementGetAttributeNodeNS = 110, |
| 139 DocumentCreateAttribute = 111, | 139 DocumentCreateAttribute = 111, |
| 140 DocumentCreateAttributeNS = 112, | 140 DocumentCreateAttributeNS = 112, |
| 141 DocumentCreateCDATASection = 113, // Removed from DOM4. | 141 DocumentCreateCDATASection = 113, // Removed from DOM4. |
| 142 DocumentXMLEncoding = 115, // Removed from DOM4. | 142 DocumentXMLEncoding = 115, // Removed from DOM4. |
| 143 DocumentXMLStandalone = 116, // Removed from DOM4. | 143 DocumentXMLStandalone = 116, // Removed from DOM4. |
| 144 DocumentXMLVersion = 117, // Removed from DOM4. | 144 DocumentXMLVersion = 117, // Removed from DOM4. |
| 145 NodeIsSameNode = 118, // Removed from DOM4. | |
| 146 NavigatorProductSub = 123, | 145 NavigatorProductSub = 123, |
| 147 NavigatorVendor = 124, | 146 NavigatorVendor = 124, |
| 148 NavigatorVendorSub = 125, | 147 NavigatorVendorSub = 125, |
| 149 FileError = 126, | 148 FileError = 126, |
| 150 PrefixedAnimationEndEvent = 128, | 149 PrefixedAnimationEndEvent = 128, |
| 151 UnprefixedAnimationEndEvent = 129, | 150 UnprefixedAnimationEndEvent = 129, |
| 152 PrefixedAndUnprefixedAnimationEndEvent = 130, | 151 PrefixedAndUnprefixedAnimationEndEvent = 130, |
| 153 PrefixedAnimationStartEvent = 131, | 152 PrefixedAnimationStartEvent = 131, |
| 154 UnprefixedAnimationStartEvent = 132, | 153 UnprefixedAnimationStartEvent = 132, |
| 155 PrefixedAndUnprefixedAnimationStartEvent = 133, | 154 PrefixedAndUnprefixedAnimationStartEvent = 133, |
| (...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 friend class UseCounterTest; | 1176 friend class UseCounterTest; |
| 1178 static int m_muteCount; | 1177 static int m_muteCount; |
| 1179 | 1178 |
| 1180 CountBits m_countBits; | 1179 CountBits m_countBits; |
| 1181 BitVector m_CSSFeatureBits; | 1180 BitVector m_CSSFeatureBits; |
| 1182 }; | 1181 }; |
| 1183 | 1182 |
| 1184 } // namespace blink | 1183 } // namespace blink |
| 1185 | 1184 |
| 1186 #endif // UseCounter_h | 1185 #endif // UseCounter_h |
| OLD | NEW |