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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 DocumentClear = 74, | 127 DocumentClear = 74, |
128 SVGFontElement = 76, | 128 SVGFontElement = 76, |
129 XMLDocument = 77, | 129 XMLDocument = 77, |
130 XSLProcessingInstruction = 78, | 130 XSLProcessingInstruction = 78, |
131 XSLTProcessor = 79, | 131 XSLTProcessor = 79, |
132 SVGSwitchElement = 80, | 132 SVGSwitchElement = 80, |
133 DocumentAll = 83, | 133 DocumentAll = 83, |
134 FormElement = 84, | 134 FormElement = 84, |
135 DemotedFormElement = 85, | 135 DemotedFormElement = 85, |
136 CaptureAttributeAsEnum = 86, | 136 CaptureAttributeAsEnum = 86, |
137 ShadowDOMPrefixedCreateShadowRoot = 88, | |
138 ShadowDOMPrefixedShadowRoot = 89, | |
139 SVGAnimationElement = 90, | 137 SVGAnimationElement = 90, |
140 KeyboardEventKeyLocation = 91, | 138 KeyboardEventKeyLocation = 91, |
141 LineClamp = 96, | 139 LineClamp = 96, |
142 SubFrameBeforeUnloadRegistered = 97, | 140 SubFrameBeforeUnloadRegistered = 97, |
143 SubFrameBeforeUnloadFired = 98, | 141 SubFrameBeforeUnloadFired = 98, |
144 TextReplaceWholeText = 100, | 142 TextReplaceWholeText = 100, |
145 PrefixedShadowRootConstructor = 101, | 143 PrefixedShadowRootConstructor = 101, |
146 ConsoleMarkTimeline = 102, | 144 ConsoleMarkTimeline = 102, |
147 CSSPseudoElementUserAgentCustomPseudo = 103, | 145 CSSPseudoElementUserAgentCustomPseudo = 103, |
148 DocumentTypeInternalSubset = 105, // Removed from DOM4. | 146 DocumentTypeInternalSubset = 105, // Removed from DOM4. |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 | 395 |
398 void updateMeasurements(); | 396 void updateMeasurements(); |
399 | 397 |
400 OwnPtr<BitVector> m_countBits; | 398 OwnPtr<BitVector> m_countBits; |
401 BitVector m_CSSFeatureBits; | 399 BitVector m_CSSFeatureBits; |
402 }; | 400 }; |
403 | 401 |
404 } // namespace WebCore | 402 } // namespace WebCore |
405 | 403 |
406 #endif // UseCounter_h | 404 #endif // UseCounter_h |
OLD | NEW |