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

Unified Diff: third_party/WebKit/Source/core/css/DOMWindowCSS.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, 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
Index: third_party/WebKit/Source/core/css/DOMWindowCSS.cpp
diff --git a/third_party/WebKit/Source/core/css/DOMWindowCSS.cpp b/third_party/WebKit/Source/core/css/DOMWindowCSS.cpp
index a94ee847ad44f1d6eceacbdc468882dc86a3df3c..3c5aff723ce4835f0654f1e3ae82f3898928a7b6 100644
--- a/third_party/WebKit/Source/core/css/DOMWindowCSS.cpp
+++ b/third_party/WebKit/Source/core/css/DOMWindowCSS.cpp
@@ -44,7 +44,7 @@ bool DOMWindowCSS::supports(const String& property, const String& value)
CSSPropertyID unresolvedProperty = unresolvedCSSPropertyID(property);
if (unresolvedProperty == CSSPropertyInvalid) {
if (RuntimeEnabledFeatures::cssVariablesEnabled() && CSSVariableParser::isValidVariableName(property)) {
- RefPtrWillBeRawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create(HTMLStandardMode);
+ RawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create(HTMLStandardMode);
return CSSParser::parseValueForCustomProperty(dummyStyle.get(), "--valid", value, false, 0);
}
return false;
@@ -53,7 +53,7 @@ bool DOMWindowCSS::supports(const String& property, const String& value)
ASSERT(CSSPropertyMetadata::isEnabledProperty(unresolvedProperty));
// This will return false when !important is present
- RefPtrWillBeRawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create(HTMLStandardMode);
+ RawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create(HTMLStandardMode);
return CSSParser::parseValue(dummyStyle.get(), unresolvedProperty, value, false, 0);
}
« no previous file with comments | « third_party/WebKit/Source/core/css/DOMWindowCSS.h ('k') | third_party/WebKit/Source/core/css/DocumentFontFaceSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698