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

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

Issue 1013213002: Fix template angle bracket syntax in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/testing/DictionaryTest.h ('k') | Source/core/testing/LayerRectList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/Internals.cpp
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
index 752c2a67b5461a7269dcfa3ae325600a96b4bb30..57ae2da247133c3ba8a209f4fa62e1fbddae31f4 100644
--- a/Source/core/testing/Internals.cpp
+++ b/Source/core/testing/Internals.cpp
@@ -1371,7 +1371,7 @@ PassRefPtrWillBeRawPtr<StaticNodeList> Internals::nodesFromRect(Document* docume
if (!request.ignoreClipping() && !frameView->visibleContentRect().intersects(HitTestLocation::rectForPoint(point, topPadding, rightPadding, bottomPadding, leftPadding)))
return nullptr;
- WillBeHeapVector<RefPtrWillBeMember<Node> > matches;
+ WillBeHeapVector<RefPtrWillBeMember<Node>> matches;
HitTestResult result(point, topPadding, rightPadding, bottomPadding, leftPadding);
layoutView->hitTest(request, result);
copyToVector(result.listBasedTestResult(), matches);
« no previous file with comments | « Source/core/testing/DictionaryTest.h ('k') | Source/core/testing/LayerRectList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698