| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 InsertAdjacentText = 140, | 168 InsertAdjacentText = 140, |
| 169 InsertAdjacentElement = 141, | 169 InsertAdjacentElement = 141, |
| 170 HasAttributes = 142, // Removed from DOM4. | 170 HasAttributes = 142, // Removed from DOM4. |
| 171 DOMSubtreeModifiedEvent = 143, | 171 DOMSubtreeModifiedEvent = 143, |
| 172 DOMNodeInsertedEvent = 144, | 172 DOMNodeInsertedEvent = 144, |
| 173 DOMNodeRemovedEvent = 145, | 173 DOMNodeRemovedEvent = 145, |
| 174 DOMNodeRemovedFromDocumentEvent = 146, | 174 DOMNodeRemovedFromDocumentEvent = 146, |
| 175 DOMNodeInsertedIntoDocumentEvent = 147, | 175 DOMNodeInsertedIntoDocumentEvent = 147, |
| 176 DOMCharacterDataModifiedEvent = 148, | 176 DOMCharacterDataModifiedEvent = 148, |
| 177 DocumentAllLegacyCall = 150, | 177 DocumentAllLegacyCall = 150, |
| 178 HTMLAppletElementLegacyCall = 151, | 178 HTMLAppletElementLegacyCall = 151, // Removed |
| 179 HTMLEmbedElementLegacyCall = 152, | 179 HTMLEmbedElementLegacyCall = 152, |
| 180 HTMLObjectElementLegacyCall = 153, | 180 HTMLObjectElementLegacyCall = 153, |
| 181 GetMatchedCSSRules = 155, | 181 GetMatchedCSSRules = 155, |
| 182 SVGFontInCSS = 156, | 182 SVGFontInCSS = 156, |
| 183 AttributeOwnerElement = 160, // Removed in DOM4. | 183 AttributeOwnerElement = 160, // Removed in DOM4. |
| 184 AttributeSpecified = 162, // Removed in DOM4. | 184 AttributeSpecified = 162, // Removed in DOM4. |
| 185 PrefixedAudioDecodedByteCount = 164, | 185 PrefixedAudioDecodedByteCount = 164, |
| 186 PrefixedVideoDecodedByteCount = 165, | 186 PrefixedVideoDecodedByteCount = 165, |
| 187 PrefixedVideoSupportsFullscreen = 166, | 187 PrefixedVideoSupportsFullscreen = 166, |
| 188 PrefixedVideoDisplayingFullscreen = 167, | 188 PrefixedVideoDisplayingFullscreen = 167, |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 | 634 |
| 635 void updateMeasurements(); | 635 void updateMeasurements(); |
| 636 | 636 |
| 637 OwnPtr<BitVector> m_countBits; | 637 OwnPtr<BitVector> m_countBits; |
| 638 BitVector m_CSSFeatureBits; | 638 BitVector m_CSSFeatureBits; |
| 639 }; | 639 }; |
| 640 | 640 |
| 641 } // namespace blink | 641 } // namespace blink |
| 642 | 642 |
| 643 #endif // UseCounter_h | 643 #endif // UseCounter_h |
| OLD | NEW |