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, |
137 SVGAnimationElement = 90, | 139 SVGAnimationElement = 90, |
138 KeyboardEventKeyLocation = 91, | 140 KeyboardEventKeyLocation = 91, |
139 LineClamp = 96, | 141 LineClamp = 96, |
140 SubFrameBeforeUnloadRegistered = 97, | 142 SubFrameBeforeUnloadRegistered = 97, |
141 SubFrameBeforeUnloadFired = 98, | 143 SubFrameBeforeUnloadFired = 98, |
142 CSSPseudoElementPrefixedDistributed = 99, | 144 CSSPseudoElementPrefixedDistributed = 99, |
143 TextReplaceWholeText = 100, | 145 TextReplaceWholeText = 100, |
144 PrefixedShadowRootConstructor = 101, | 146 PrefixedShadowRootConstructor = 101, |
145 ConsoleMarkTimeline = 102, | 147 ConsoleMarkTimeline = 102, |
146 CSSPseudoElementUserAgentCustomPseudo = 103, | 148 CSSPseudoElementUserAgentCustomPseudo = 103, |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 | 373 |
372 void updateMeasurements(); | 374 void updateMeasurements(); |
373 | 375 |
374 OwnPtr<BitVector> m_countBits; | 376 OwnPtr<BitVector> m_countBits; |
375 BitVector m_CSSFeatureBits; | 377 BitVector m_CSSFeatureBits; |
376 }; | 378 }; |
377 | 379 |
378 } // namespace WebCore | 380 } // namespace WebCore |
379 | 381 |
380 #endif // UseCounter_h | 382 #endif // UseCounter_h |
OLD | NEW |