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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 InputTypeTextMaxLength = 191, | 181 InputTypeTextMaxLength = 191, |
182 InputTypePassword = 192, | 182 InputTypePassword = 192, |
183 InputTypePasswordMaxLength = 193, | 183 InputTypePasswordMaxLength = 193, |
184 PrefixedPageVisibility = 196, | 184 PrefixedPageVisibility = 196, |
185 CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the speci
fication and other browsers. | 185 CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the speci
fication and other browsers. |
186 DocumentUnloadRegistered = 202, | 186 DocumentUnloadRegistered = 202, |
187 DocumentUnloadFired = 203, | 187 DocumentUnloadFired = 203, |
188 SVGLocatableNearestViewportElement = 204, | 188 SVGLocatableNearestViewportElement = 204, |
189 SVGLocatableFarthestViewportElement = 205, | 189 SVGLocatableFarthestViewportElement = 205, |
190 HTMLHeadElementProfile = 207, | 190 HTMLHeadElementProfile = 207, |
191 OverflowChangedEvent = 208, | |
192 SVGPointMatrixTransform = 209, | 191 SVGPointMatrixTransform = 209, |
193 DOMFocusInOutEvent = 211, | 192 DOMFocusInOutEvent = 211, |
194 FileGetLastModifiedDate = 212, | 193 FileGetLastModifiedDate = 212, |
195 HTMLElementInnerText = 213, | 194 HTMLElementInnerText = 213, |
196 HTMLElementOuterText = 214, | 195 HTMLElementOuterText = 214, |
197 ElementPrefixedMatchesSelector = 217, | 196 ElementPrefixedMatchesSelector = 217, |
198 CSSStyleSheetRules = 219, | 197 CSSStyleSheetRules = 219, |
199 CSSStyleSheetAddRule = 220, | 198 CSSStyleSheetAddRule = 220, |
200 CSSStyleSheetRemoveRule = 221, | 199 CSSStyleSheetRemoveRule = 221, |
201 // The above items are available in M33 branch. | 200 // The above items are available in M33 branch. |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 | 490 |
492 void updateMeasurements(); | 491 void updateMeasurements(); |
493 | 492 |
494 OwnPtr<BitVector> m_countBits; | 493 OwnPtr<BitVector> m_countBits; |
495 BitVector m_CSSFeatureBits; | 494 BitVector m_CSSFeatureBits; |
496 }; | 495 }; |
497 | 496 |
498 } // namespace blink | 497 } // namespace blink |
499 | 498 |
500 #endif // UseCounter_h | 499 #endif // UseCounter_h |
OLD | NEW |