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

Unified Diff: third_party/WebKit/Source/core/css/CSSShadowValue.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/CSSShadowValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSShadowValue.cpp b/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
index 1e9cf6d5a92d51021eaf37bbdb9c676bb7a30e10..8f727289e253eb7a21247493fd1530f257f0a672 100644
--- a/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
@@ -26,12 +26,12 @@
namespace blink {
// Used for text-shadow and box-shadow
-CSSShadowValue::CSSShadowValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style,
- PassRefPtrWillBeRawPtr<CSSValue> color)
+CSSShadowValue::CSSShadowValue(RawPtr<CSSPrimitiveValue> x,
+ RawPtr<CSSPrimitiveValue> y,
+ RawPtr<CSSPrimitiveValue> blur,
+ RawPtr<CSSPrimitiveValue> spread,
+ RawPtr<CSSPrimitiveValue> style,
+ RawPtr<CSSValue> color)
: CSSValue(ShadowClass)
, x(x)
, y(y)
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSShadowValue.h ('k') | third_party/WebKit/Source/core/css/CSSStringValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698