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

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

Issue 665093002: Oilpan:fix build after r183981. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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: Source/core/inspector/InspectorStyleSheet.cpp
diff --git a/Source/core/inspector/InspectorStyleSheet.cpp b/Source/core/inspector/InspectorStyleSheet.cpp
index cf27161442fe11466fed6b8785324450116d0c4f..d341945aba18a3bd8c156c62e7c8536525f96db9 100644
--- a/Source/core/inspector/InspectorStyleSheet.cpp
+++ b/Source/core/inspector/InspectorStyleSheet.cpp
@@ -882,7 +882,7 @@ bool InspectorStyleSheetBase::getStyleText(const InspectorCSSId& id, String* tex
void InspectorStyleSheetBase::onStyleSheetTextChanged()
{
- m_lineEndings = adoptPtrWillBeNoop(new LineEndings());
+ m_lineEndings = adoptPtr(new LineEndings());
if (listener())
listener()->styleSheetChanged(this);
}
@@ -1868,4 +1868,3 @@ void InspectorStyleSheetForInlineStyle::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