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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
265 CaptureAttributeAsBoolean = 245, | 265 CaptureAttributeAsBoolean = 245, |
266 FormNameAccessForImageElement = 246, | 266 FormNameAccessForImageElement = 246, |
267 FormNameAccessForPastNamesMap = 247, | 267 FormNameAccessForPastNamesMap = 247, |
268 FormAssociationByParser = 248, | 268 FormAssociationByParser = 248, |
269 SVGSVGElementInDocument = 250, | 269 SVGSVGElementInDocument = 250, |
270 SVGDocumentRootElement = 251, | 270 SVGDocumentRootElement = 251, |
271 DocumentCreateEventOptionalArgument = 252, | 271 DocumentCreateEventOptionalArgument = 252, |
272 MediaErrorEncrypted = 253, | 272 MediaErrorEncrypted = 253, |
273 EventSourceURL = 254, | 273 EventSourceURL = 254, |
274 WebSocketURL = 255, | 274 WebSocketURL = 255, |
275 DocumentImportNodeOptionalArgument = 256, | |
Inactive
2014/04/30 17:04:18
arv probably knows, are we allowed to reuse slots
arv (Not doing code reviews)
2014/04/30 18:11:46
This is not allowed. We need new unique IDs for th
| |
275 WorkerSubjectToCSP = 257, | 276 WorkerSubjectToCSP = 257, |
276 WorkerAllowedByChildBlockedByScript = 258, | 277 WorkerAllowedByChildBlockedByScript = 258, |
277 HTMLMediaElementControllerNotNull = 259, | 278 HTMLMediaElementControllerNotNull = 259, |
278 DeprecatedWebKitGradient = 260, | 279 DeprecatedWebKitGradient = 260, |
279 DeprecatedWebKitLinearGradient = 261, | 280 DeprecatedWebKitLinearGradient = 261, |
280 DeprecatedWebKitRepeatingLinearGradient = 262, | 281 DeprecatedWebKitRepeatingLinearGradient = 262, |
281 DeprecatedWebKitRadialGradient = 263, | 282 DeprecatedWebKitRadialGradient = 263, |
282 DeprecatedWebKitRepeatingRadialGradient = 264, | 283 DeprecatedWebKitRepeatingRadialGradient = 264, |
283 PrefixedImageSmoothingEnabled = 267, | 284 PrefixedImageSmoothingEnabled = 267, |
284 UnprefixedImageSmoothingEnabled = 268, | 285 UnprefixedImageSmoothingEnabled = 268, |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
418 | 419 |
419 void updateMeasurements(); | 420 void updateMeasurements(); |
420 | 421 |
421 OwnPtr<BitVector> m_countBits; | 422 OwnPtr<BitVector> m_countBits; |
422 BitVector m_CSSFeatureBits; | 423 BitVector m_CSSFeatureBits; |
423 }; | 424 }; |
424 | 425 |
425 } // namespace WebCore | 426 } // namespace WebCore |
426 | 427 |
427 #endif // UseCounter_h | 428 #endif // UseCounter_h |
OLD | NEW |