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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 ElementPrefixedMatchesSelector = 217, | 185 ElementPrefixedMatchesSelector = 217, |
186 CSSStyleSheetRules = 219, | 186 CSSStyleSheetRules = 219, |
187 CSSStyleSheetAddRule = 220, | 187 CSSStyleSheetAddRule = 220, |
188 CSSStyleSheetRemoveRule = 221, | 188 CSSStyleSheetRemoveRule = 221, |
189 // The above items are available in M33 branch. | 189 // The above items are available in M33 branch. |
190 | 190 |
191 InitMessageEvent = 222, | 191 InitMessageEvent = 222, |
192 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. | 192 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. |
193 CSSStyleDeclarationGetPropertyCSSValue = 225, | 193 CSSStyleDeclarationGetPropertyCSSValue = 225, |
194 PrefixedMediaCancelKeyRequest = 229, | 194 PrefixedMediaCancelKeyRequest = 229, |
195 DOMImplementationHasFeature = 230, | |
196 DOMImplementationHasFeatureReturnFalse = 231, | |
197 CanPlayTypeKeySystem = 232, | 195 CanPlayTypeKeySystem = 232, |
198 PrefixedDevicePixelRatioMediaFeature = 233, | 196 PrefixedDevicePixelRatioMediaFeature = 233, |
199 PrefixedMaxDevicePixelRatioMediaFeature = 234, | 197 PrefixedMaxDevicePixelRatioMediaFeature = 234, |
200 PrefixedMinDevicePixelRatioMediaFeature = 235, | 198 PrefixedMinDevicePixelRatioMediaFeature = 235, |
201 PrefixedTransform3dMediaFeature = 237, | 199 PrefixedTransform3dMediaFeature = 237, |
202 PrefixedStorageQuota = 240, | 200 PrefixedStorageQuota = 240, |
203 ResetReferrerPolicy = 243, | 201 ResetReferrerPolicy = 243, |
204 CaseInsensitiveAttrSelectorMatch = 244, // Case-insensitivity dropped fr
om specification. | 202 CaseInsensitiveAttrSelectorMatch = 244, // Case-insensitivity dropped fr
om specification. |
205 FormNameAccessForImageElement = 246, | 203 FormNameAccessForImageElement = 246, |
206 FormNameAccessForPastNamesMap = 247, | 204 FormNameAccessForPastNamesMap = 247, |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 | 469 |
472 void updateMeasurements(); | 470 void updateMeasurements(); |
473 | 471 |
474 OwnPtr<BitVector> m_countBits; | 472 OwnPtr<BitVector> m_countBits; |
475 BitVector m_CSSFeatureBits; | 473 BitVector m_CSSFeatureBits; |
476 }; | 474 }; |
477 | 475 |
478 } // namespace blink | 476 } // namespace blink |
479 | 477 |
480 #endif // UseCounter_h | 478 #endif // UseCounter_h |
OLD | NEW |