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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 ReplaceDocumentViaJavaScriptURL = 215, | 228 ReplaceDocumentViaJavaScriptURL = 215, |
229 ElementSetAttributeNodeNS = 216, // Removed from DOM4. | 229 ElementSetAttributeNodeNS = 216, // Removed from DOM4. |
230 ElementPrefixedMatchesSelector = 217, | 230 ElementPrefixedMatchesSelector = 217, |
231 CSSStyleSheetRules = 219, | 231 CSSStyleSheetRules = 219, |
232 CSSStyleSheetAddRule = 220, | 232 CSSStyleSheetAddRule = 220, |
233 CSSStyleSheetRemoveRule = 221, | 233 CSSStyleSheetRemoveRule = 221, |
234 // The above items are available in M33 branch. | 234 // The above items are available in M33 branch. |
235 | 235 |
236 InitMessageEvent = 222, | 236 InitMessageEvent = 222, |
237 PrefixedInitMessageEvent = 223, | 237 PrefixedInitMessageEvent = 223, |
238 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. | |
239 CSSStyleDeclarationGetPropertyCSSValue = 225, | 238 CSSStyleDeclarationGetPropertyCSSValue = 225, |
240 PrefixedMediaCancelKeyRequest = 229, | 239 PrefixedMediaCancelKeyRequest = 229, |
241 DOMImplementationHasFeature = 230, | 240 DOMImplementationHasFeature = 230, |
242 DOMImplementationHasFeatureReturnFalse = 231, | 241 DOMImplementationHasFeatureReturnFalse = 231, |
243 CanPlayTypeKeySystem = 232, | 242 CanPlayTypeKeySystem = 232, |
244 PrefixedDevicePixelRatioMediaFeature = 233, | 243 PrefixedDevicePixelRatioMediaFeature = 233, |
245 PrefixedMaxDevicePixelRatioMediaFeature = 234, | 244 PrefixedMaxDevicePixelRatioMediaFeature = 234, |
246 PrefixedMinDevicePixelRatioMediaFeature = 235, | 245 PrefixedMinDevicePixelRatioMediaFeature = 235, |
247 PrefixedTransform3dMediaFeature = 237, | 246 PrefixedTransform3dMediaFeature = 237, |
248 PrefixedStorageQuota = 240, | 247 PrefixedStorageQuota = 240, |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
493 | 492 |
494 void updateMeasurements(); | 493 void updateMeasurements(); |
495 | 494 |
496 OwnPtr<BitVector> m_countBits; | 495 OwnPtr<BitVector> m_countBits; |
497 BitVector m_CSSFeatureBits; | 496 BitVector m_CSSFeatureBits; |
498 }; | 497 }; |
499 | 498 |
500 } // namespace WebCore | 499 } // namespace WebCore |
501 | 500 |
502 #endif // UseCounter_h | 501 #endif // UseCounter_h |
OLD | NEW |