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

Unified Diff: Source/core/testing/Internals.cpp

Issue 1269123002: Preparation for combining paths of focus rings and outlines (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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: Source/core/testing/Internals.cpp
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
index bb9fae03dfe77ed1f26a75be4ec475371c687293..dd15820ba0fa7d0f5303d999b17ebe51539392b8 100644
--- a/Source/core/testing/Internals.cpp
+++ b/Source/core/testing/Internals.cpp
@@ -2455,11 +2455,11 @@ String Internals::unscopeableMethod()
return "unscopeableMethod";
}
-ClientRectList* Internals::focusRingRects(Element* element)
+ClientRectList* Internals::outlineRects(Element* element)
{
Vector<LayoutRect> rects;
if (element && element->layoutObject())
- element->layoutObject()->addFocusRingRects(rects, LayoutPoint());
+ element->layoutObject()->addOutlineRects(rects, LayoutPoint());
return ClientRectList::create(rects);
}

Powered by Google App Engine
This is Rietveld 408576698