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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp

Issue 1571443004: Oilpan: fix build after r368275. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove use of 'auto' instead Created 4 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
index ccecc57674870b9c9e6280a61a886e4703f62505..e49567e8c600c24c9ee25e5cadec956b711fd187 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
@@ -974,7 +974,7 @@ void InspectorCSSAgent::getCSSAnimationsForNode(ErrorString* errorString, int no
// Find CSSOM wrapper.
CSSKeyframesRule* cssKeyframesRule = nullptr;
- for (auto& styleSheet : *m_documentToCSSStyleSheets.get(ownerDocument)) {
+ for (CSSStyleSheet* styleSheet : *m_documentToCSSStyleSheets.get(ownerDocument)) {
ASSERT(styleSheet->ownerNode());
RuleSet& ruleSet = styleSheet->contents()->ruleSet();
for (auto& rule : ruleSet.keyframesRules()) {
« 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