| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 DOMCharacterDataModifiedEvent = 148, | 187 DOMCharacterDataModifiedEvent = 148, |
| 188 DocumentAllLegacyCall = 150, | 188 DocumentAllLegacyCall = 150, |
| 189 HTMLAppletElementLegacyCall = 151, | 189 HTMLAppletElementLegacyCall = 151, |
| 190 HTMLEmbedElementLegacyCall = 152, | 190 HTMLEmbedElementLegacyCall = 152, |
| 191 HTMLObjectElementLegacyCall = 153, | 191 HTMLObjectElementLegacyCall = 153, |
| 192 GetMatchedCSSRules = 155, | 192 GetMatchedCSSRules = 155, |
| 193 SVGFontInCSS = 156, | 193 SVGFontInCSS = 156, |
| 194 AttributeSpecified = 162, // Removed in DOM4. | 194 AttributeSpecified = 162, // Removed in DOM4. |
| 195 PrefixedAudioDecodedByteCount = 164, | 195 PrefixedAudioDecodedByteCount = 164, |
| 196 PrefixedVideoDecodedByteCount = 165, | 196 PrefixedVideoDecodedByteCount = 165, |
| 197 PrefixedVideoSupportsFullscreen = 166, |
| 198 PrefixedVideoDisplayingFullscreen = 167, |
| 199 PrefixedVideoEnterFullscreen = 168, |
| 200 PrefixedVideoExitFullscreen = 169, |
| 201 PrefixedVideoEnterFullScreen = 170, |
| 202 PrefixedVideoExitFullScreen = 171, |
| 197 PrefixedVideoDecodedFrameCount = 172, | 203 PrefixedVideoDecodedFrameCount = 172, |
| 198 PrefixedVideoDroppedFrameCount = 173, | 204 PrefixedVideoDroppedFrameCount = 173, |
| 199 PrefixedElementRequestFullscreen = 176, | 205 PrefixedElementRequestFullscreen = 176, |
| 200 PrefixedElementRequestFullScreen = 177, | 206 PrefixedElementRequestFullScreen = 177, |
| 201 BarPropLocationbar = 178, | 207 BarPropLocationbar = 178, |
| 202 BarPropMenubar = 179, | 208 BarPropMenubar = 179, |
| 203 BarPropPersonalbar = 180, | 209 BarPropPersonalbar = 180, |
| 204 BarPropScrollbars = 181, | 210 BarPropScrollbars = 181, |
| 205 BarPropStatusbar = 182, | 211 BarPropStatusbar = 182, |
| 206 BarPropToolbar = 183, | 212 BarPropToolbar = 183, |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 | 399 |
| 394 void updateMeasurements(); | 400 void updateMeasurements(); |
| 395 | 401 |
| 396 OwnPtr<BitVector> m_countBits; | 402 OwnPtr<BitVector> m_countBits; |
| 397 BitVector m_CSSFeatureBits; | 403 BitVector m_CSSFeatureBits; |
| 398 }; | 404 }; |
| 399 | 405 |
| 400 } // namespace WebCore | 406 } // namespace WebCore |
| 401 | 407 |
| 402 #endif // UseCounter_h | 408 #endif // UseCounter_h |
| OLD | NEW |