| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 HTMLHeadElementProfile = 207, | 228 HTMLHeadElementProfile = 207, |
| 229 OverflowChangedEvent = 208, | 229 OverflowChangedEvent = 208, |
| 230 SVGPointMatrixTransform = 209, | 230 SVGPointMatrixTransform = 209, |
| 231 HTMLHtmlElementManifest = 210, | 231 HTMLHtmlElementManifest = 210, |
| 232 DOMFocusInOutEvent = 211, | 232 DOMFocusInOutEvent = 211, |
| 233 FileGetLastModifiedDate = 212, | 233 FileGetLastModifiedDate = 212, |
| 234 HTMLElementInnerText = 213, | 234 HTMLElementInnerText = 213, |
| 235 HTMLElementOuterText = 214, | 235 HTMLElementOuterText = 214, |
| 236 ReplaceDocumentViaJavaScriptURL = 215, | 236 ReplaceDocumentViaJavaScriptURL = 215, |
| 237 ElementPrefixedMatchesSelector = 217, | 237 ElementPrefixedMatchesSelector = 217, |
| 238 DOMImplementationCreateCSSStyleSheet = 218, | |
| 239 CSSStyleSheetRules = 219, | 238 CSSStyleSheetRules = 219, |
| 240 CSSStyleSheetAddRule = 220, | 239 CSSStyleSheetAddRule = 220, |
| 241 CSSStyleSheetRemoveRule = 221, | 240 CSSStyleSheetRemoveRule = 221, |
| 242 // The above items are available in M33 branch. | 241 // The above items are available in M33 branch. |
| 243 | 242 |
| 244 InitMessageEvent = 222, | 243 InitMessageEvent = 222, |
| 245 PrefixedInitMessageEvent = 223, | 244 PrefixedInitMessageEvent = 223, |
| 246 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. | 245 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. |
| 247 CSSStyleDeclarationGetPropertyCSSValue = 225, | 246 CSSStyleDeclarationGetPropertyCSSValue = 225, |
| 248 PrefixedMediaCancelKeyRequest = 229, | 247 PrefixedMediaCancelKeyRequest = 229, |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 | 399 |
| 401 void updateMeasurements(); | 400 void updateMeasurements(); |
| 402 | 401 |
| 403 OwnPtr<BitVector> m_countBits; | 402 OwnPtr<BitVector> m_countBits; |
| 404 BitVector m_CSSFeatureBits; | 403 BitVector m_CSSFeatureBits; |
| 405 }; | 404 }; |
| 406 | 405 |
| 407 } // namespace WebCore | 406 } // namespace WebCore |
| 408 | 407 |
| 409 #endif // UseCounter_h | 408 #endif // UseCounter_h |
| OLD | NEW |