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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 PrefixedMinDevicePixelRatioMediaFeature = 235, | 235 PrefixedMinDevicePixelRatioMediaFeature = 235, |
236 PrefixedTransform3dMediaFeature = 237, | 236 PrefixedTransform3dMediaFeature = 237, |
237 PrefixedStorageQuota = 240, | 237 PrefixedStorageQuota = 240, |
238 ResetReferrerPolicy = 243, | 238 ResetReferrerPolicy = 243, |
239 CaseInsensitiveAttrSelectorMatch = 244, // Case-insensitivity dropped fr
om specification. | 239 CaseInsensitiveAttrSelectorMatch = 244, // Case-insensitivity dropped fr
om specification. |
240 FormNameAccessForImageElement = 246, | 240 FormNameAccessForImageElement = 246, |
241 FormNameAccessForPastNamesMap = 247, | 241 FormNameAccessForPastNamesMap = 247, |
242 FormAssociationByParser = 248, | 242 FormAssociationByParser = 248, |
243 SVGSVGElementInDocument = 250, | 243 SVGSVGElementInDocument = 250, |
244 SVGDocumentRootElement = 251, | 244 SVGDocumentRootElement = 251, |
245 EventSourceURL = 254, | |
246 WorkerSubjectToCSP = 257, | 245 WorkerSubjectToCSP = 257, |
247 WorkerAllowedByChildBlockedByScript = 258, | 246 WorkerAllowedByChildBlockedByScript = 258, |
248 DeprecatedWebKitGradient = 260, | 247 DeprecatedWebKitGradient = 260, |
249 DeprecatedWebKitLinearGradient = 261, | 248 DeprecatedWebKitLinearGradient = 261, |
250 DeprecatedWebKitRepeatingLinearGradient = 262, | 249 DeprecatedWebKitRepeatingLinearGradient = 262, |
251 DeprecatedWebKitRadialGradient = 263, | 250 DeprecatedWebKitRadialGradient = 263, |
252 DeprecatedWebKitRepeatingRadialGradient = 264, | 251 DeprecatedWebKitRepeatingRadialGradient = 264, |
253 PrefixedImageSmoothingEnabled = 267, | 252 PrefixedImageSmoothingEnabled = 267, |
254 UnprefixedImageSmoothingEnabled = 268, | 253 UnprefixedImageSmoothingEnabled = 268, |
255 // The above items are available in M34 branch. | 254 // The above items are available in M34 branch. |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 bool recordMeasurement(Feature feature) { return m_countBits.recordMeasureme
nt(feature); } | 711 bool recordMeasurement(Feature feature) { return m_countBits.recordMeasureme
nt(feature); } |
713 void updateMeasurements(); | 712 void updateMeasurements(); |
714 | 713 |
715 CountBits m_countBits; | 714 CountBits m_countBits; |
716 BitVector m_CSSFeatureBits; | 715 BitVector m_CSSFeatureBits; |
717 }; | 716 }; |
718 | 717 |
719 } // namespace blink | 718 } // namespace blink |
720 | 719 |
721 #endif // UseCounter_h | 720 #endif // UseCounter_h |
OLD | NEW |