| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 HTMLElementOuterText = 214, | 223 HTMLElementOuterText = 214, |
| 224 ReplaceDocumentViaJavaScriptURL = 215, | 224 ReplaceDocumentViaJavaScriptURL = 215, |
| 225 ElementSetAttributeNodeNS = 216, // Removed from DOM4. | 225 ElementSetAttributeNodeNS = 216, // Removed from DOM4. |
| 226 ElementPrefixedMatchesSelector = 217, | 226 ElementPrefixedMatchesSelector = 217, |
| 227 CSSStyleSheetRules = 219, | 227 CSSStyleSheetRules = 219, |
| 228 CSSStyleSheetAddRule = 220, | 228 CSSStyleSheetAddRule = 220, |
| 229 CSSStyleSheetRemoveRule = 221, | 229 CSSStyleSheetRemoveRule = 221, |
| 230 // The above items are available in M33 branch. | 230 // The above items are available in M33 branch. |
| 231 | 231 |
| 232 InitMessageEvent = 222, | 232 InitMessageEvent = 222, |
| 233 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. | |
| 234 CSSStyleDeclarationGetPropertyCSSValue = 225, | 233 CSSStyleDeclarationGetPropertyCSSValue = 225, |
| 235 PrefixedMediaCancelKeyRequest = 229, | 234 PrefixedMediaCancelKeyRequest = 229, |
| 236 DOMImplementationHasFeature = 230, | 235 DOMImplementationHasFeature = 230, |
| 237 DOMImplementationHasFeatureReturnFalse = 231, | 236 DOMImplementationHasFeatureReturnFalse = 231, |
| 238 CanPlayTypeKeySystem = 232, | 237 CanPlayTypeKeySystem = 232, |
| 239 PrefixedDevicePixelRatioMediaFeature = 233, | 238 PrefixedDevicePixelRatioMediaFeature = 233, |
| 240 PrefixedMaxDevicePixelRatioMediaFeature = 234, | 239 PrefixedMaxDevicePixelRatioMediaFeature = 234, |
| 241 PrefixedMinDevicePixelRatioMediaFeature = 235, | 240 PrefixedMinDevicePixelRatioMediaFeature = 235, |
| 242 PrefixedTransform3dMediaFeature = 237, | 241 PrefixedTransform3dMediaFeature = 237, |
| 243 PrefixedStorageQuota = 240, | 242 PrefixedStorageQuota = 240, |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 | 632 |
| 634 void updateMeasurements(); | 633 void updateMeasurements(); |
| 635 | 634 |
| 636 OwnPtr<BitVector> m_countBits; | 635 OwnPtr<BitVector> m_countBits; |
| 637 BitVector m_CSSFeatureBits; | 636 BitVector m_CSSFeatureBits; |
| 638 }; | 637 }; |
| 639 | 638 |
| 640 } // namespace blink | 639 } // namespace blink |
| 641 | 640 |
| 642 #endif // UseCounter_h | 641 #endif // UseCounter_h |
| OLD | NEW |