| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 ~UseCounter(); | 59 ~UseCounter(); |
| 60 | 60 |
| 61 enum Feature { | 61 enum Feature { |
| 62 // Do not change assigned numbers of existing items: add new features | 62 // Do not change assigned numbers of existing items: add new features |
| 63 // to the end of the list. | 63 // to the end of the list. |
| 64 PageDestruction = 0, | 64 PageDestruction = 0, |
| 65 PrefixedIndexedDB = 3, | 65 PrefixedIndexedDB = 3, |
| 66 WorkerStart = 4, | 66 WorkerStart = 4, |
| 67 SharedWorkerStart = 5, | 67 SharedWorkerStart = 5, |
| 68 UnprefixedIndexedDB = 9, | 68 UnprefixedIndexedDB = 9, |
| 69 OpenWebDatabase = 10, | |
| 70 UnprefixedRequestAnimationFrame = 13, | 69 UnprefixedRequestAnimationFrame = 13, |
| 71 PrefixedRequestAnimationFrame = 14, | 70 PrefixedRequestAnimationFrame = 14, |
| 72 PrefixedTransitionEndEvent = 18, | 71 PrefixedTransitionEndEvent = 18, |
| 73 UnprefixedTransitionEndEvent = 19, | 72 UnprefixedTransitionEndEvent = 19, |
| 74 PrefixedAndUnprefixedTransitionEndEvent = 20, | 73 PrefixedAndUnprefixedTransitionEndEvent = 20, |
| 75 AutoFocusAttribute = 21, | 74 AutoFocusAttribute = 21, |
| 76 DataListElement = 23, | 75 DataListElement = 23, |
| 77 FormAttribute = 24, | 76 FormAttribute = 24, |
| 78 IncrementalAttribute = 25, | 77 IncrementalAttribute = 25, |
| 79 InputTypeColor = 26, | 78 InputTypeColor = 26, |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 ElementAnimateKeyframeListEffectNoTiming = 294, | 230 ElementAnimateKeyframeListEffectNoTiming = 294, |
| 232 AttrGetValue = 298, | 231 AttrGetValue = 298, |
| 233 AttrSetValue = 299, | 232 AttrSetValue = 299, |
| 234 AnimationConstructorKeyframeListEffectObjectTiming = 300, | 233 AnimationConstructorKeyframeListEffectObjectTiming = 300, |
| 235 AnimationConstructorKeyframeListEffectDoubleTiming = 301, | 234 AnimationConstructorKeyframeListEffectDoubleTiming = 301, |
| 236 AnimationConstructorKeyframeListEffectNoTiming = 302, | 235 AnimationConstructorKeyframeListEffectNoTiming = 302, |
| 237 AttrSetValueWithElement = 303, | 236 AttrSetValueWithElement = 303, |
| 238 PrefixedCancelAnimationFrame = 304, | 237 PrefixedCancelAnimationFrame = 304, |
| 239 PrefixedCancelRequestAnimationFrame = 305, | 238 PrefixedCancelRequestAnimationFrame = 305, |
| 240 | 239 |
| 241 OpenWebDatabaseInWorker = 313, // This didn't work because of crbug.com/
376039. Available since M37. | |
| 242 OpenWebDatabaseSyncInWorker = 314, // This didn't work because of crbug.
com/376039. Available since M37. | |
| 243 XHRProgressEventPosition = 316, | 240 XHRProgressEventPosition = 316, |
| 244 XHRProgressEventTotalSize = 317, | 241 XHRProgressEventTotalSize = 317, |
| 245 PrefixedDocumentIsFullscreen = 318, | 242 PrefixedDocumentIsFullscreen = 318, |
| 246 PrefixedDocumentFullScreenKeyboardInputAllowed = 319, | 243 PrefixedDocumentFullScreenKeyboardInputAllowed = 319, |
| 247 PrefixedDocumentCurrentFullScreenElement = 320, | 244 PrefixedDocumentCurrentFullScreenElement = 320, |
| 248 PrefixedDocumentCancelFullScreen = 321, | 245 PrefixedDocumentCancelFullScreen = 321, |
| 249 PrefixedDocumentFullscreenEnabled = 322, | 246 PrefixedDocumentFullscreenEnabled = 322, |
| 250 PrefixedDocumentFullscreenElement = 323, | 247 PrefixedDocumentFullscreenElement = 323, |
| 251 PrefixedDocumentExitFullscreen = 324, | 248 PrefixedDocumentExitFullscreen = 324, |
| 252 // The above items are available in M35 branch. | 249 // The above items are available in M35 branch. |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 | 466 |
| 470 void updateMeasurements(); | 467 void updateMeasurements(); |
| 471 | 468 |
| 472 OwnPtr<BitVector> m_countBits; | 469 OwnPtr<BitVector> m_countBits; |
| 473 BitVector m_CSSFeatureBits; | 470 BitVector m_CSSFeatureBits; |
| 474 }; | 471 }; |
| 475 | 472 |
| 476 } // namespace blink | 473 } // namespace blink |
| 477 | 474 |
| 478 #endif // UseCounter_h | 475 #endif // UseCounter_h |
| OLD | NEW |