Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: Source/core/frame/UseCounter.h

Issue 1149373003: Remove Range.compareNode() as it is not in the spec (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 812
814 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 813 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
815 814
816 CountBits m_countBits; 815 CountBits m_countBits;
817 BitVector m_CSSFeatureBits; 816 BitVector m_CSSFeatureBits;
818 }; 817 };
819 818
820 } // namespace blink 819 } // namespace blink
821 820
822 #endif // UseCounter_h 821 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698