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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 PrefixedTouchRadiusX = 378, | 327 PrefixedTouchRadiusX = 378, |
328 PrefixedTouchRadiusY = 379, | 328 PrefixedTouchRadiusY = 379, |
329 PrefixedTouchRotationAngle = 380, | 329 PrefixedTouchRotationAngle = 380, |
330 PrefixedTouchForce = 381, | 330 PrefixedTouchForce = 381, |
331 PrefixedMouseEventMovementX = 382, | 331 PrefixedMouseEventMovementX = 382, |
332 PrefixedMouseEventMovementY = 383, | 332 PrefixedMouseEventMovementY = 383, |
333 PrefixedFileRelativePath = 386, | 333 PrefixedFileRelativePath = 386, |
334 DocumentCaretRangeFromPoint = 387, | 334 DocumentCaretRangeFromPoint = 387, |
335 DocumentGetCSSCanvasContext = 388, | 335 DocumentGetCSSCanvasContext = 388, |
336 ElementScrollIntoViewIfNeeded = 389, | 336 ElementScrollIntoViewIfNeeded = 389, |
337 RangeCompareNode = 392, | |
338 RangeExpand = 393, | 337 RangeExpand = 393, |
339 HTMLImageElementX = 396, | 338 HTMLImageElementX = 396, |
340 HTMLImageElementY = 397, | 339 HTMLImageElementY = 397, |
341 SelectionBaseNode = 400, | 340 SelectionBaseNode = 400, |
342 SelectionBaseOffset = 401, | 341 SelectionBaseOffset = 401, |
343 SelectionExtentNode = 402, | 342 SelectionExtentNode = 402, |
344 SelectionExtentOffset = 403, | 343 SelectionExtentOffset = 403, |
345 SelectionType = 404, | 344 SelectionType = 404, |
346 SelectionModify = 405, | 345 SelectionModify = 405, |
347 SelectionSetBaseAndExtent = 406, | 346 SelectionSetBaseAndExtent = 406, |
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
866 | 865 |
867 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } | 866 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } |
868 | 867 |
869 CountBits m_countBits; | 868 CountBits m_countBits; |
870 BitVector m_CSSFeatureBits; | 869 BitVector m_CSSFeatureBits; |
871 }; | 870 }; |
872 | 871 |
873 } // namespace blink | 872 } // namespace blink |
874 | 873 |
875 #endif // UseCounter_h | 874 #endif // UseCounter_h |
OLD | NEW |