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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 2000323008: Use original repaint tests for spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/testing/Internals.idl
diff --git a/third_party/WebKit/Source/core/testing/Internals.idl b/third_party/WebKit/Source/core/testing/Internals.idl
index 8bec34e2ebc247a85ced1aae05b41656a50a7edc..023bd48df95b6492e840e78db603ec560ebcc298 100644
--- a/third_party/WebKit/Source/core/testing/Internals.idl
+++ b/third_party/WebKit/Source/core/testing/Internals.idl
@@ -235,7 +235,6 @@
// These functions both reset the tracked repaint rects. They are intended to be used in the following order:
// startTrackingRepaints(), repaintRectsAsText(), stopTrackingRepaints().
- // TODO(wangxianzhu): Remove these functions when we no longer use repaint rects.
[RaisesException] void startTrackingRepaints(Document document);
[RaisesException] void stopTrackingRepaints(Document document);
@@ -246,16 +245,6 @@
[RaisesException] void forceFullRepaint(Document document);
- // These functions both reset the tracked paint invalidation objects. They are intended to be used in the following order:
- // startTrackingPaintInvalidationObjects(), trackedPaintInvalidationObjects(), stopTrackingPaintInvalidationObjects().
- void startTrackingPaintInvalidationObjects();
- void stopTrackingPaintInvalidationObjects();
-
- // Returns a list of debug strings for objects that were invalidated between
- // startTrackingPaintInvalidationObjects() and stopTrackingPaintInvalidationObjects().
- // If an object is invalidated multiple times, it will appear in the list multiple times.
- DOMString[] trackedPaintInvalidationObjects();
-
// Returns a list of draggable/non-draggable regions in the document.
[RaisesException] ClientRectList draggableRegions(Document document);
[RaisesException] ClientRectList nonDraggableRegions(Document document);

Powered by Google App Engine
This is Rietveld 408576698