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

Unified Diff: Source/core/inspector/InspectorDOMAgent.cpp

Issue 789063004: Oilpan: fix build after r187207. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: non-oilpan adjust Created 6 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorDOMAgent.cpp
diff --git a/Source/core/inspector/InspectorDOMAgent.cpp b/Source/core/inspector/InspectorDOMAgent.cpp
index 00327397a2b3bd7678ca0fc2b3c09cef54978f71..b2bda8f5500f01f75718b7a4de32328a063098b4 100644
--- a/Source/core/inspector/InspectorDOMAgent.cpp
+++ b/Source/core/inspector/InspectorDOMAgent.cpp
@@ -230,7 +230,7 @@ void InspectorRevalidateDOMTask::onTimer(Timer<InspectorRevalidateDOMTask>*)
m_styleAttrInvalidatedElements.clear();
elements.clear();
- for (const auto& it : m_contentDistributionInvalidatedElements)
+ for (const RefPtrWillBeMember<Element>& it : m_contentDistributionInvalidatedElements)
elements.append(it.get());
m_domAgent->contentDistributionInvalidated(elements);
@@ -2311,4 +2311,3 @@ void InspectorDOMAgent::trace(Visitor* visitor)
}
} // namespace blink
-
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698