| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 DOMSubtreeModifiedEvent = 143, | 183 DOMSubtreeModifiedEvent = 143, |
| 184 DOMNodeInsertedEvent = 144, | 184 DOMNodeInsertedEvent = 144, |
| 185 DOMNodeRemovedEvent = 145, | 185 DOMNodeRemovedEvent = 145, |
| 186 DOMNodeRemovedFromDocumentEvent = 146, | 186 DOMNodeRemovedFromDocumentEvent = 146, |
| 187 DOMNodeInsertedIntoDocumentEvent = 147, | 187 DOMNodeInsertedIntoDocumentEvent = 147, |
| 188 DOMCharacterDataModifiedEvent = 148, | 188 DOMCharacterDataModifiedEvent = 148, |
| 189 DocumentAllLegacyCall = 150, | 189 DocumentAllLegacyCall = 150, |
| 190 HTMLAppletElementLegacyCall = 151, | 190 HTMLAppletElementLegacyCall = 151, |
| 191 HTMLEmbedElementLegacyCall = 152, | 191 HTMLEmbedElementLegacyCall = 152, |
| 192 HTMLObjectElementLegacyCall = 153, | 192 HTMLObjectElementLegacyCall = 153, |
| 193 BeforeLoadEvent = 154, | |
| 194 GetMatchedCSSRules = 155, | 193 GetMatchedCSSRules = 155, |
| 195 SVGFontInCSS = 156, | 194 SVGFontInCSS = 156, |
| 196 AttributeSpecified = 162, // Removed in DOM4. | 195 AttributeSpecified = 162, // Removed in DOM4. |
| 197 BeforeLoadEventInIsolatedWorld = 163, | |
| 198 PrefixedAudioDecodedByteCount = 164, | 196 PrefixedAudioDecodedByteCount = 164, |
| 199 PrefixedVideoDecodedByteCount = 165, | 197 PrefixedVideoDecodedByteCount = 165, |
| 200 PrefixedVideoDecodedFrameCount = 172, | 198 PrefixedVideoDecodedFrameCount = 172, |
| 201 PrefixedVideoDroppedFrameCount = 173, | 199 PrefixedVideoDroppedFrameCount = 173, |
| 202 PrefixedElementRequestFullscreen = 176, | 200 PrefixedElementRequestFullscreen = 176, |
| 203 PrefixedElementRequestFullScreen = 177, | 201 PrefixedElementRequestFullScreen = 177, |
| 204 BarPropLocationbar = 178, | 202 BarPropLocationbar = 178, |
| 205 BarPropMenubar = 179, | 203 BarPropMenubar = 179, |
| 206 BarPropPersonalbar = 180, | 204 BarPropPersonalbar = 180, |
| 207 BarPropScrollbars = 181, | 205 BarPropScrollbars = 181, |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 | 386 |
| 389 void updateMeasurements(); | 387 void updateMeasurements(); |
| 390 | 388 |
| 391 OwnPtr<BitVector> m_countBits; | 389 OwnPtr<BitVector> m_countBits; |
| 392 BitVector m_CSSFeatureBits; | 390 BitVector m_CSSFeatureBits; |
| 393 }; | 391 }; |
| 394 | 392 |
| 395 } // namespace WebCore | 393 } // namespace WebCore |
| 396 | 394 |
| 397 #endif // UseCounter_h | 395 #endif // UseCounter_h |
| OLD | NEW |