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

Unified Diff: Source/core/animation/FilterStyleInterpolation.cpp

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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: Source/core/animation/FilterStyleInterpolation.cpp
diff --git a/Source/core/animation/FilterStyleInterpolation.cpp b/Source/core/animation/FilterStyleInterpolation.cpp
index 4d063c0778be3836c2aaa044ddff34b0c15a65b7..ebd012551f3072c57a579722bd61c42a7e2515a9 100644
--- a/Source/core/animation/FilterStyleInterpolation.cpp
+++ b/Source/core/animation/FilterStyleInterpolation.cpp
@@ -13,9 +13,9 @@ namespace blink {
namespace {
-PassRefPtrWillBeRawPtr<CSSValueList> extendFilterList(const CSSValueList& shortFilterList, const CSSValueList& otherFilterList)
+PassRefPtr<CSSValueList> extendFilterList(const CSSValueList& shortFilterList, const CSSValueList& otherFilterList)
{
- RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createSpaceSeparated();
+ RefPtr<CSSValueList> result = CSSValueList::createSpaceSeparated();
CSSValueList::const_iterator shortIter = shortFilterList.begin();
CSSValueList::const_iterator otherIter = otherFilterList.begin();
while (shortIter != shortFilterList.end()) {
@@ -25,7 +25,7 @@ PassRefPtrWillBeRawPtr<CSSValueList> extendFilterList(const CSSValueList& shortF
}
while (otherIter != otherFilterList.end()) {
CSSFunctionValue* function = toCSSFunctionValue(otherIter->get());
- RefPtrWillBeRawPtr<CSSValueList> defaultFunction = CSSFunctionValue::create(function->functionType());
+ RefPtr<CSSValueList> defaultFunction = CSSFunctionValue::create(function->functionType());
switch (function->functionType()) {
case CSSValueUrl:
// Discrete interpolation occurs - see canCreateFrom.
@@ -130,11 +130,11 @@ PassOwnPtrWillBeRawPtr<InterpolableValue> FilterStyleInterpolation::toInterpolab
return result.release();
}
-PassRefPtrWillBeRawPtr<CSSFunctionValue> FilterStyleInterpolation::fromInterpolableValue(const InterpolableValue& value, CSSValueID functionType, InterpolationRange)
+PassRefPtr<CSSFunctionValue> FilterStyleInterpolation::fromInterpolableValue(const InterpolableValue& value, CSSValueID functionType, InterpolationRange)
{
const InterpolableList& list = toInterpolableList(value);
size_t length = list.length();
- RefPtrWillBeRawPtr<CSSFunctionValue> result = CSSFunctionValue::create(functionType);
+ RefPtr<CSSFunctionValue> result = CSSFunctionValue::create(functionType);
for (size_t i = 0; i < length; ++i) {
switch (functionType) {
case CSSValueGrayscale:
« no previous file with comments | « Source/core/animation/FilterStyleInterpolation.h ('k') | Source/core/animation/FilterStyleInterpolationTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698