| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 DemotedFormElement = 85, | 129 DemotedFormElement = 85, |
| 130 CaptureAttributeAsEnum = 86, | 130 CaptureAttributeAsEnum = 86, |
| 131 SVGAnimationElement = 90, | 131 SVGAnimationElement = 90, |
| 132 KeyboardEventKeyLocation = 91, | 132 KeyboardEventKeyLocation = 91, |
| 133 LineClamp = 96, | 133 LineClamp = 96, |
| 134 SubFrameBeforeUnloadRegistered = 97, | 134 SubFrameBeforeUnloadRegistered = 97, |
| 135 SubFrameBeforeUnloadFired = 98, | 135 SubFrameBeforeUnloadFired = 98, |
| 136 TextReplaceWholeText = 100, | 136 TextReplaceWholeText = 100, |
| 137 ConsoleMarkTimeline = 102, | 137 ConsoleMarkTimeline = 102, |
| 138 CSSPseudoElementUserAgentCustomPseudo = 103, | 138 CSSPseudoElementUserAgentCustomPseudo = 103, |
| 139 DocumentTypeInternalSubset = 105, // Removed from DOM4. | |
| 140 ElementGetAttributeNode = 107, // Removed from DOM4. | 139 ElementGetAttributeNode = 107, // Removed from DOM4. |
| 141 ElementSetAttributeNode = 108, // Removed from DOM4. | 140 ElementSetAttributeNode = 108, // Removed from DOM4. |
| 142 ElementRemoveAttributeNode = 109, // Removed from DOM4. | 141 ElementRemoveAttributeNode = 109, // Removed from DOM4. |
| 143 ElementGetAttributeNodeNS = 110, // Removed from DOM4. | 142 ElementGetAttributeNodeNS = 110, // Removed from DOM4. |
| 144 DocumentCreateAttribute = 111, // Removed from DOM4. | 143 DocumentCreateAttribute = 111, // Removed from DOM4. |
| 145 DocumentCreateAttributeNS = 112, // Removed from DOM4. | 144 DocumentCreateAttributeNS = 112, // Removed from DOM4. |
| 146 DocumentCreateCDATASection = 113, // Removed from DOM4. | 145 DocumentCreateCDATASection = 113, // Removed from DOM4. |
| 147 DocumentInputEncoding = 114, // Removed from DOM4. | 146 DocumentInputEncoding = 114, // Removed from DOM4. |
| 148 DocumentXMLEncoding = 115, // Removed from DOM4. | 147 DocumentXMLEncoding = 115, // Removed from DOM4. |
| 149 DocumentXMLStandalone = 116, // Removed from DOM4. | 148 DocumentXMLStandalone = 116, // Removed from DOM4. |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 | 477 |
| 479 void updateMeasurements(); | 478 void updateMeasurements(); |
| 480 | 479 |
| 481 OwnPtr<BitVector> m_countBits; | 480 OwnPtr<BitVector> m_countBits; |
| 482 BitVector m_CSSFeatureBits; | 481 BitVector m_CSSFeatureBits; |
| 483 }; | 482 }; |
| 484 | 483 |
| 485 } // namespace WebCore | 484 } // namespace WebCore |
| 486 | 485 |
| 487 #endif // UseCounter_h | 486 #endif // UseCounter_h |
| OLD | NEW |