| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 ConsoleMarkTimeline = 102, | 134 ConsoleMarkTimeline = 102, |
| 135 DocumentCreateAttribute = 111, | 135 DocumentCreateAttribute = 111, |
| 136 DocumentCreateAttributeNS = 112, | 136 DocumentCreateAttributeNS = 112, |
| 137 DocumentCreateCDATASection = 113, // Removed from DOM4. | 137 DocumentCreateCDATASection = 113, // Removed from DOM4. |
| 138 DocumentXMLEncoding = 115, // Removed from DOM4. | 138 DocumentXMLEncoding = 115, // Removed from DOM4. |
| 139 DocumentXMLStandalone = 116, // Removed from DOM4. | 139 DocumentXMLStandalone = 116, // Removed from DOM4. |
| 140 DocumentXMLVersion = 117, // Removed from DOM4. | 140 DocumentXMLVersion = 117, // Removed from DOM4. |
| 141 NavigatorProductSub = 123, | 141 NavigatorProductSub = 123, |
| 142 NavigatorVendor = 124, | 142 NavigatorVendor = 124, |
| 143 NavigatorVendorSub = 125, | 143 NavigatorVendorSub = 125, |
| 144 FileError = 126, | |
| 145 PrefixedAnimationEndEvent = 128, | 144 PrefixedAnimationEndEvent = 128, |
| 146 UnprefixedAnimationEndEvent = 129, | 145 UnprefixedAnimationEndEvent = 129, |
| 147 PrefixedAndUnprefixedAnimationEndEvent = 130, | 146 PrefixedAndUnprefixedAnimationEndEvent = 130, |
| 148 PrefixedAnimationStartEvent = 131, | 147 PrefixedAnimationStartEvent = 131, |
| 149 UnprefixedAnimationStartEvent = 132, | 148 UnprefixedAnimationStartEvent = 132, |
| 150 PrefixedAndUnprefixedAnimationStartEvent = 133, | 149 PrefixedAndUnprefixedAnimationStartEvent = 133, |
| 151 PrefixedAnimationIterationEvent = 134, | 150 PrefixedAnimationIterationEvent = 134, |
| 152 UnprefixedAnimationIterationEvent = 135, | 151 UnprefixedAnimationIterationEvent = 135, |
| 153 PrefixedAndUnprefixedAnimationIterationEvent = 136, | 152 PrefixedAndUnprefixedAnimationIterationEvent = 136, |
| 154 EventReturnValue = 137, // Legacy IE extension. | 153 EventReturnValue = 137, // Legacy IE extension. |
| (...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1292 friend class UseCounterTest; | 1291 friend class UseCounterTest; |
| 1293 static int m_muteCount; | 1292 static int m_muteCount; |
| 1294 | 1293 |
| 1295 CountBits m_countBits; | 1294 CountBits m_countBits; |
| 1296 BitVector m_CSSFeatureBits; | 1295 BitVector m_CSSFeatureBits; |
| 1297 }; | 1296 }; |
| 1298 | 1297 |
| 1299 } // namespace blink | 1298 } // namespace blink |
| 1300 | 1299 |
| 1301 #endif // UseCounter_h | 1300 #endif // UseCounter_h |
| OLD | NEW |