| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 InputTypePassword = 192, | 205 InputTypePassword = 192, |
| 206 InputTypePasswordMaxLength = 193, | 206 InputTypePasswordMaxLength = 193, |
| 207 PrefixedPageVisibility = 196, | 207 PrefixedPageVisibility = 196, |
| 208 CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the speci
fication and other browsers. | 208 CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the speci
fication and other browsers. |
| 209 DocumentBeforeUnloadRegistered = 200, | 209 DocumentBeforeUnloadRegistered = 200, |
| 210 DocumentBeforeUnloadFired = 201, | 210 DocumentBeforeUnloadFired = 201, |
| 211 DocumentUnloadRegistered = 202, | 211 DocumentUnloadRegistered = 202, |
| 212 DocumentUnloadFired = 203, | 212 DocumentUnloadFired = 203, |
| 213 SVGLocatableNearestViewportElement = 204, | 213 SVGLocatableNearestViewportElement = 204, |
| 214 SVGLocatableFarthestViewportElement = 205, | 214 SVGLocatableFarthestViewportElement = 205, |
| 215 OverflowChangedEvent = 208, | |
| 216 SVGPointMatrixTransform = 209, | 215 SVGPointMatrixTransform = 209, |
| 217 DOMFocusInOutEvent = 211, | 216 DOMFocusInOutEvent = 211, |
| 218 FileGetLastModifiedDate = 212, | 217 FileGetLastModifiedDate = 212, |
| 219 HTMLElementInnerText = 213, | 218 HTMLElementInnerText = 213, |
| 220 HTMLElementOuterText = 214, | 219 HTMLElementOuterText = 214, |
| 221 ReplaceDocumentViaJavaScriptURL = 215, | 220 ReplaceDocumentViaJavaScriptURL = 215, |
| 222 ElementSetAttributeNodeNS = 216, | 221 ElementSetAttributeNodeNS = 216, |
| 223 ElementPrefixedMatchesSelector = 217, | 222 ElementPrefixedMatchesSelector = 217, |
| 224 CSSStyleSheetRules = 219, | 223 CSSStyleSheetRules = 219, |
| 225 CSSStyleSheetAddRule = 220, | 224 CSSStyleSheetAddRule = 220, |
| (...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 | 867 |
| 869 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } | 868 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } |
| 870 | 869 |
| 871 CountBits m_countBits; | 870 CountBits m_countBits; |
| 872 BitVector m_CSSFeatureBits; | 871 BitVector m_CSSFeatureBits; |
| 873 }; | 872 }; |
| 874 | 873 |
| 875 } // namespace blink | 874 } // namespace blink |
| 876 | 875 |
| 877 #endif // UseCounter_h | 876 #endif // UseCounter_h |
| OLD | NEW |