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

Unified Diff: third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h

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/CSSTimingFunctionValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h b/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h
index bad1f873561338b337fcb6bad06d965636285dae..f2d159a81bd38051c258aa51b975f8a16363c414 100644
--- a/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h
+++ b/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h
@@ -34,9 +34,9 @@ namespace blink {
class CSSCubicBezierTimingFunctionValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2)
+ static RawPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2)
{
- return adoptRefWillBeNoop(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
+ return new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2);
}
String customCSSText() const;
@@ -70,9 +70,9 @@ DEFINE_CSS_VALUE_TYPE_CASTS(CSSCubicBezierTimingFunctionValue, isCubicBezierTimi
class CSSStepsTimingFunctionValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSStepsTimingFunctionValue> create(int steps, StepsTimingFunction::StepAtPosition stepAtPosition)
+ static RawPtr<CSSStepsTimingFunctionValue> create(int steps, StepsTimingFunction::StepAtPosition stepAtPosition)
{
- return adoptRefWillBeNoop(new CSSStepsTimingFunctionValue(steps, stepAtPosition));
+ return new CSSStepsTimingFunctionValue(steps, stepAtPosition);
}
int numberOfSteps() const { return m_steps; }
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSTestHelper.h ('k') | third_party/WebKit/Source/core/css/CSSURIValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698