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