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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 AttrSetValueWithElement = 303, | 300 AttrSetValueWithElement = 303, |
301 PrefixedCancelAnimationFrame = 304, | 301 PrefixedCancelAnimationFrame = 304, |
302 PrefixedCancelRequestAnimationFrame = 305, | 302 PrefixedCancelRequestAnimationFrame = 305, |
303 NamedNodeMapGetNamedItem = 306, | 303 NamedNodeMapGetNamedItem = 306, |
304 NamedNodeMapSetNamedItem = 307, | 304 NamedNodeMapSetNamedItem = 307, |
305 NamedNodeMapRemoveNamedItem = 308, | 305 NamedNodeMapRemoveNamedItem = 308, |
306 NamedNodeMapItem = 309, | 306 NamedNodeMapItem = 309, |
307 NamedNodeMapGetNamedItemNS = 310, | 307 NamedNodeMapGetNamedItemNS = 310, |
308 NamedNodeMapSetNamedItemNS = 311, | 308 NamedNodeMapSetNamedItemNS = 311, |
309 NamedNodeMapRemoveNamedItemNS = 312, | 309 NamedNodeMapRemoveNamedItemNS = 312, |
310 OpenWebDatabaseInWorker = 313, // This doesn't work because of crbug.com
/376039. | 310 OpenWebDatabaseInWorker = 313, // This didn't work because of crbug.com/
376039. Available since M37. |
311 OpenWebDatabaseSyncInWorker = 314, // This doesn't work because of crbug
.com/376039. | 311 OpenWebDatabaseSyncInWorker = 314, // This didn't work because of crbug.
com/376039. Available since M37. |
312 PrefixedAllowFullscreenAttribute = 315, | 312 PrefixedAllowFullscreenAttribute = 315, |
313 XHRProgressEventPosition = 316, | 313 XHRProgressEventPosition = 316, |
314 XHRProgressEventTotalSize = 317, | 314 XHRProgressEventTotalSize = 317, |
315 PrefixedDocumentIsFullscreen = 318, | 315 PrefixedDocumentIsFullscreen = 318, |
316 PrefixedDocumentFullScreenKeyboardInputAllowed = 319, | 316 PrefixedDocumentFullScreenKeyboardInputAllowed = 319, |
317 PrefixedDocumentCurrentFullScreenElement = 320, | 317 PrefixedDocumentCurrentFullScreenElement = 320, |
318 PrefixedDocumentCancelFullScreen = 321, | 318 PrefixedDocumentCancelFullScreen = 321, |
319 PrefixedDocumentFullscreenEnabled = 322, | 319 PrefixedDocumentFullscreenEnabled = 322, |
320 PrefixedDocumentFullscreenElement = 323, | 320 PrefixedDocumentFullscreenElement = 323, |
321 PrefixedDocumentExitFullscreen = 324, | 321 PrefixedDocumentExitFullscreen = 324, |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 | 527 |
528 void updateMeasurements(); | 528 void updateMeasurements(); |
529 | 529 |
530 OwnPtr<BitVector> m_countBits; | 530 OwnPtr<BitVector> m_countBits; |
531 BitVector m_CSSFeatureBits; | 531 BitVector m_CSSFeatureBits; |
532 }; | 532 }; |
533 | 533 |
534 } // namespace WebCore | 534 } // namespace WebCore |
535 | 535 |
536 #endif // UseCounter_h | 536 #endif // UseCounter_h |
OLD | NEW |