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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 DOMImplementationCreateCSSStyleSheet = 218, | 238 DOMImplementationCreateCSSStyleSheet = 218, |
239 CSSStyleSheetRules = 219, | 239 CSSStyleSheetRules = 219, |
240 CSSStyleSheetAddRule = 220, | 240 CSSStyleSheetAddRule = 220, |
241 CSSStyleSheetRemoveRule = 221, | 241 CSSStyleSheetRemoveRule = 221, |
242 // The above items are available in M33 branch. | 242 // The above items are available in M33 branch. |
243 | 243 |
244 InitMessageEvent = 222, | 244 InitMessageEvent = 222, |
245 PrefixedInitMessageEvent = 223, | 245 PrefixedInitMessageEvent = 223, |
246 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. | 246 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. |
247 CSSStyleDeclarationGetPropertyCSSValue = 225, | 247 CSSStyleDeclarationGetPropertyCSSValue = 225, |
248 SVGElementGetPresentationAttribute = 226, | |
249 PrefixedMediaCancelKeyRequest = 229, | 248 PrefixedMediaCancelKeyRequest = 229, |
250 DOMImplementationHasFeature = 230, | 249 DOMImplementationHasFeature = 230, |
251 DOMImplementationHasFeatureReturnFalse = 231, | 250 DOMImplementationHasFeatureReturnFalse = 231, |
252 CanPlayTypeKeySystem = 232, | 251 CanPlayTypeKeySystem = 232, |
253 PrefixedDevicePixelRatioMediaFeature = 233, | 252 PrefixedDevicePixelRatioMediaFeature = 233, |
254 PrefixedMaxDevicePixelRatioMediaFeature = 234, | 253 PrefixedMaxDevicePixelRatioMediaFeature = 234, |
255 PrefixedMinDevicePixelRatioMediaFeature = 235, | 254 PrefixedMinDevicePixelRatioMediaFeature = 235, |
256 PrefixedTransform2dMediaFeature = 236, | 255 PrefixedTransform2dMediaFeature = 236, |
257 PrefixedTransform3dMediaFeature = 237, | 256 PrefixedTransform3dMediaFeature = 237, |
258 PrefixedAnimationMediaFeature = 238, | 257 PrefixedAnimationMediaFeature = 238, |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 | 387 |
389 void updateMeasurements(); | 388 void updateMeasurements(); |
390 | 389 |
391 OwnPtr<BitVector> m_countBits; | 390 OwnPtr<BitVector> m_countBits; |
392 BitVector m_CSSFeatureBits; | 391 BitVector m_CSSFeatureBits; |
393 }; | 392 }; |
394 | 393 |
395 } // namespace WebCore | 394 } // namespace WebCore |
396 | 395 |
397 #endif // UseCounter_h | 396 #endif // UseCounter_h |
OLD | NEW |