| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 PrefixedMediaGenerateKeyRequest = 72, | 114 PrefixedMediaGenerateKeyRequest = 72, |
| 115 SVGFontElement = 76, | 115 SVGFontElement = 76, |
| 116 XMLDocument = 77, | 116 XMLDocument = 77, |
| 117 SVGSwitchElement = 80, | 117 SVGSwitchElement = 80, |
| 118 DocumentAll = 83, | 118 DocumentAll = 83, |
| 119 FormElement = 84, | 119 FormElement = 84, |
| 120 DemotedFormElement = 85, | 120 DemotedFormElement = 85, |
| 121 SVGAnimationElement = 90, | 121 SVGAnimationElement = 90, |
| 122 KeyboardEventKeyLocation = 91, | 122 KeyboardEventKeyLocation = 91, |
| 123 LineClamp = 96, | 123 LineClamp = 96, |
| 124 SubFrameBeforeUnloadRegistered = 97, | |
| 125 SubFrameBeforeUnloadFired = 98, | |
| 126 TextReplaceWholeText = 100, | 124 TextReplaceWholeText = 100, |
| 127 ConsoleMarkTimeline = 102, | 125 ConsoleMarkTimeline = 102, |
| 128 CSSPseudoElementUserAgentCustomPseudo = 103, | 126 CSSPseudoElementUserAgentCustomPseudo = 103, |
| 129 ElementGetAttributeNode = 107, // Removed from DOM4. | 127 ElementGetAttributeNode = 107, // Removed from DOM4. |
| 130 ElementSetAttributeNode = 108, // Removed from DOM4. | 128 ElementSetAttributeNode = 108, // Removed from DOM4. |
| 131 ElementRemoveAttributeNode = 109, // Removed from DOM4. | 129 ElementRemoveAttributeNode = 109, // Removed from DOM4. |
| 132 DocumentCreateAttribute = 111, // Removed from DOM4. | 130 DocumentCreateAttribute = 111, // Removed from DOM4. |
| 133 DocumentCreateAttributeNS = 112, // Removed from DOM4. | 131 DocumentCreateAttributeNS = 112, // Removed from DOM4. |
| 134 DocumentInputEncoding = 114, // Removed from DOM4. | 132 DocumentInputEncoding = 114, // Removed from DOM4. |
| 135 DocumentXMLEncoding = 115, // Removed from DOM4. | 133 DocumentXMLEncoding = 115, // Removed from DOM4. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 PrefixedElementRequestFullScreen = 177, | 176 PrefixedElementRequestFullScreen = 177, |
| 179 InputTypeEmailMultiple = 184, | 177 InputTypeEmailMultiple = 184, |
| 180 InputTypeEmailMaxLength = 185, | 178 InputTypeEmailMaxLength = 185, |
| 181 InputTypeEmailMultipleMaxLength = 186, | 179 InputTypeEmailMultipleMaxLength = 186, |
| 182 InputTypeText = 190, | 180 InputTypeText = 190, |
| 183 InputTypeTextMaxLength = 191, | 181 InputTypeTextMaxLength = 191, |
| 184 InputTypePassword = 192, | 182 InputTypePassword = 192, |
| 185 InputTypePasswordMaxLength = 193, | 183 InputTypePasswordMaxLength = 193, |
| 186 PrefixedPageVisibility = 196, | 184 PrefixedPageVisibility = 196, |
| 187 CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the speci
fication and other browsers. | 185 CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the speci
fication and other browsers. |
| 188 DocumentBeforeUnloadRegistered = 200, | |
| 189 DocumentBeforeUnloadFired = 201, | |
| 190 DocumentUnloadRegistered = 202, | 186 DocumentUnloadRegistered = 202, |
| 191 DocumentUnloadFired = 203, | 187 DocumentUnloadFired = 203, |
| 192 SVGLocatableNearestViewportElement = 204, | 188 SVGLocatableNearestViewportElement = 204, |
| 193 SVGLocatableFarthestViewportElement = 205, | 189 SVGLocatableFarthestViewportElement = 205, |
| 194 HTMLHeadElementProfile = 207, | 190 HTMLHeadElementProfile = 207, |
| 195 OverflowChangedEvent = 208, | 191 OverflowChangedEvent = 208, |
| 196 SVGPointMatrixTransform = 209, | 192 SVGPointMatrixTransform = 209, |
| 197 DOMFocusInOutEvent = 211, | 193 DOMFocusInOutEvent = 211, |
| 198 FileGetLastModifiedDate = 212, | 194 FileGetLastModifiedDate = 212, |
| 199 HTMLElementInnerText = 213, | 195 HTMLElementInnerText = 213, |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 | 491 |
| 496 void updateMeasurements(); | 492 void updateMeasurements(); |
| 497 | 493 |
| 498 OwnPtr<BitVector> m_countBits; | 494 OwnPtr<BitVector> m_countBits; |
| 499 BitVector m_CSSFeatureBits; | 495 BitVector m_CSSFeatureBits; |
| 500 }; | 496 }; |
| 501 | 497 |
| 502 } // namespace blink | 498 } // namespace blink |
| 503 | 499 |
| 504 #endif // UseCounter_h | 500 #endif // UseCounter_h |
| OLD | NEW |