| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 PrefixedElementRequestFullScreen = 177, | 205 PrefixedElementRequestFullScreen = 177, |
| 206 BarPropLocationbar = 178, | 206 BarPropLocationbar = 178, |
| 207 BarPropMenubar = 179, | 207 BarPropMenubar = 179, |
| 208 BarPropPersonalbar = 180, | 208 BarPropPersonalbar = 180, |
| 209 BarPropScrollbars = 181, | 209 BarPropScrollbars = 181, |
| 210 BarPropStatusbar = 182, | 210 BarPropStatusbar = 182, |
| 211 BarPropToolbar = 183, | 211 BarPropToolbar = 183, |
| 212 InputTypeEmailMultiple = 184, | 212 InputTypeEmailMultiple = 184, |
| 213 InputTypeEmailMaxLength = 185, | 213 InputTypeEmailMaxLength = 185, |
| 214 InputTypeEmailMultipleMaxLength = 186, | 214 InputTypeEmailMultipleMaxLength = 186, |
| 215 TextTrackCueConstructor = 187, | |
| 216 CSSStyleDeclarationPropertyName = 188, // Removed in CSSOM. | 215 CSSStyleDeclarationPropertyName = 188, // Removed in CSSOM. |
| 217 CSSStyleDeclarationFloatPropertyName = 189, // Pending removal in CSSOM. | 216 CSSStyleDeclarationFloatPropertyName = 189, // Pending removal in CSSOM. |
| 218 InputTypeText = 190, | 217 InputTypeText = 190, |
| 219 InputTypeTextMaxLength = 191, | 218 InputTypeTextMaxLength = 191, |
| 220 InputTypePassword = 192, | 219 InputTypePassword = 192, |
| 221 InputTypePasswordMaxLength = 193, | 220 InputTypePasswordMaxLength = 193, |
| 222 SVGInstanceRoot = 194, | 221 SVGInstanceRoot = 194, |
| 223 ShowModalDialog = 195, | 222 ShowModalDialog = 195, |
| 224 PrefixedPageVisibility = 196, | 223 PrefixedPageVisibility = 196, |
| 225 HTMLFrameElementLocation = 197, | 224 HTMLFrameElementLocation = 197, |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 | 343 |
| 345 void updateMeasurements(); | 344 void updateMeasurements(); |
| 346 | 345 |
| 347 OwnPtr<BitVector> m_countBits; | 346 OwnPtr<BitVector> m_countBits; |
| 348 BitVector m_CSSFeatureBits; | 347 BitVector m_CSSFeatureBits; |
| 349 }; | 348 }; |
| 350 | 349 |
| 351 } // namespace WebCore | 350 } // namespace WebCore |
| 352 | 351 |
| 353 #endif // UseCounter_h | 352 #endif // UseCounter_h |
| OLD | NEW |