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

Unified Diff: third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.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/cssom/TranslationTransformComponent.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp b/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
index 166be8966244a7c5040a7af0ea901e8f3acd400e..7cc1466fb850817366e9399fee1be55b01df5aa3 100644
--- a/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
@@ -19,9 +19,9 @@ TranslationTransformComponent* TranslationTransformComponent::create(LengthValue
return new TranslationTransformComponent(x, y, z);
}
-PassRefPtrWillBeRawPtr<CSSFunctionValue> TranslationTransformComponent::toCSSValue() const
+RawPtr<CSSFunctionValue> TranslationTransformComponent::toCSSValue() const
{
- RefPtrWillBeRawPtr<CSSFunctionValue> result = CSSFunctionValue::create(is2D() ? CSSValueTranslate : CSSValueTranslate3d);
+ RawPtr<CSSFunctionValue> result = CSSFunctionValue::create(is2D() ? CSSValueTranslate : CSSValueTranslate3d);
result->append(m_x->toCSSValue());
result->append(m_y->toCSSValue());
if (!is2D())

Powered by Google App Engine
This is Rietveld 408576698