| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 SVGPointMatrixTransform = 209, | 191 SVGPointMatrixTransform = 209, |
| 192 DOMFocusInOutEvent = 211, | 192 DOMFocusInOutEvent = 211, |
| 193 FileGetLastModifiedDate = 212, | 193 FileGetLastModifiedDate = 212, |
| 194 HTMLElementInnerText = 213, | |
| 195 HTMLElementOuterText = 214, | |
| 196 ElementPrefixedMatchesSelector = 217, | 194 ElementPrefixedMatchesSelector = 217, |
| 197 CSSStyleSheetRules = 219, | 195 CSSStyleSheetRules = 219, |
| 198 CSSStyleSheetAddRule = 220, | 196 CSSStyleSheetAddRule = 220, |
| 199 CSSStyleSheetRemoveRule = 221, | 197 CSSStyleSheetRemoveRule = 221, |
| 200 // The above items are available in M33 branch. | 198 // The above items are available in M33 branch. |
| 201 | 199 |
| 202 InitMessageEvent = 222, | 200 InitMessageEvent = 222, |
| 203 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. | 201 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. |
| 204 CSSStyleDeclarationGetPropertyCSSValue = 225, | 202 CSSStyleDeclarationGetPropertyCSSValue = 225, |
| 205 PrefixedMediaCancelKeyRequest = 229, | 203 PrefixedMediaCancelKeyRequest = 229, |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 | 485 |
| 488 void updateMeasurements(); | 486 void updateMeasurements(); |
| 489 | 487 |
| 490 OwnPtr<BitVector> m_countBits; | 488 OwnPtr<BitVector> m_countBits; |
| 491 BitVector m_CSSFeatureBits; | 489 BitVector m_CSSFeatureBits; |
| 492 }; | 490 }; |
| 493 | 491 |
| 494 } // namespace blink | 492 } // namespace blink |
| 495 | 493 |
| 496 #endif // UseCounter_h | 494 #endif // UseCounter_h |
| OLD | NEW |