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

Unified Diff: third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp b/third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp
index cb4bb81c3c76eecdeaa3d91f46a304d6329182f7..1b0838533e9f0e5b0a471a11b8d03f773e792db8 100644
--- a/third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp
@@ -25,7 +25,7 @@ const String& KeywordValue::keywordValue() const
return m_keywordValue;
}
-PassRefPtrWillBeRawPtr<CSSValue> KeywordValue::toCSSValue() const
+RawPtr<CSSValue> KeywordValue::toCSSValue() const
{
CSSParserString cssKeywordString;
cssKeywordString.init(m_keywordValue);

Powered by Google App Engine
This is Rietveld 408576698