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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 EventSourceURL = 254, | 270 EventSourceURL = 254, |
271 WebSocketURL = 255, | 271 WebSocketURL = 255, |
272 WorkerSubjectToCSP = 257, | 272 WorkerSubjectToCSP = 257, |
273 WorkerAllowedByChildBlockedByScript = 258, | 273 WorkerAllowedByChildBlockedByScript = 258, |
274 HTMLMediaElementControllerNotNull = 259, | 274 HTMLMediaElementControllerNotNull = 259, |
275 DeprecatedWebKitGradient = 260, | 275 DeprecatedWebKitGradient = 260, |
276 DeprecatedWebKitLinearGradient = 261, | 276 DeprecatedWebKitLinearGradient = 261, |
277 DeprecatedWebKitRepeatingLinearGradient = 262, | 277 DeprecatedWebKitRepeatingLinearGradient = 262, |
278 DeprecatedWebKitRadialGradient = 263, | 278 DeprecatedWebKitRadialGradient = 263, |
279 DeprecatedWebKitRepeatingRadialGradient = 264, | 279 DeprecatedWebKitRepeatingRadialGradient = 264, |
280 PrefixedGetImageDataHD = 265, | |
281 PrefixedPutImageDataHD = 266, | |
282 PrefixedImageSmoothingEnabled = 267, | 280 PrefixedImageSmoothingEnabled = 267, |
283 UnprefixedImageSmoothingEnabled = 268, | 281 UnprefixedImageSmoothingEnabled = 268, |
284 ShadowRootApplyAuthorStyles = 269, | 282 ShadowRootApplyAuthorStyles = 269, |
285 PromiseConstructor = 270, | 283 PromiseConstructor = 270, |
286 PromiseCast = 271, | 284 PromiseCast = 271, |
287 PromiseReject = 272, | 285 PromiseReject = 272, |
288 PromiseResolve = 273, | 286 PromiseResolve = 273, |
289 // The above items are available in M34 branch. | 287 // The above items are available in M34 branch. |
290 | 288 |
291 TextAutosizing = 274, | 289 TextAutosizing = 274, |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 | 383 |
386 void updateMeasurements(); | 384 void updateMeasurements(); |
387 | 385 |
388 OwnPtr<BitVector> m_countBits; | 386 OwnPtr<BitVector> m_countBits; |
389 BitVector m_CSSFeatureBits; | 387 BitVector m_CSSFeatureBits; |
390 }; | 388 }; |
391 | 389 |
392 } // namespace WebCore | 390 } // namespace WebCore |
393 | 391 |
394 #endif // UseCounter_h | 392 #endif // UseCounter_h |
OLD | NEW |