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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyleTest.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/style/ComputedStyleTest.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp b/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
index 83d7d65831a467e2b0bac6162ba40086e393612f..5ae2f3c2dc5b16fdd06fd4b07743358124dfa8ed 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
@@ -12,8 +12,8 @@ namespace blink {
TEST(ComputedStyleTest, ShapeOutsideBoxEqual)
{
- RefPtrWillBeRawPtr<ShapeValue> shape1 = ShapeValue::createBoxShapeValue(ContentBox);
- RefPtrWillBeRawPtr<ShapeValue> shape2 = ShapeValue::createBoxShapeValue(ContentBox);
+ RawPtr<ShapeValue> shape1 = ShapeValue::createBoxShapeValue(ContentBox);
+ RawPtr<ShapeValue> shape2 = ShapeValue::createBoxShapeValue(ContentBox);
RefPtr<ComputedStyle> style1 = ComputedStyle::create();
RefPtr<ComputedStyle> style2 = ComputedStyle::create();
style1->setShapeOutside(shape1);
@@ -25,8 +25,8 @@ TEST(ComputedStyleTest, ShapeOutsideCircleEqual)
{
RefPtr<BasicShapeCircle> circle1 = BasicShapeCircle::create();
RefPtr<BasicShapeCircle> circle2 = BasicShapeCircle::create();
- RefPtrWillBeRawPtr<ShapeValue> shape1 = ShapeValue::createShapeValue(circle1, ContentBox);
- RefPtrWillBeRawPtr<ShapeValue> shape2 = ShapeValue::createShapeValue(circle2, ContentBox);
+ RawPtr<ShapeValue> shape1 = ShapeValue::createShapeValue(circle1, ContentBox);
+ RawPtr<ShapeValue> shape2 = ShapeValue::createShapeValue(circle2, ContentBox);
RefPtr<ComputedStyle> style1 = ComputedStyle::create();
RefPtr<ComputedStyle> style2 = ComputedStyle::create();
style1->setShapeOutside(shape1);
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | third_party/WebKit/Source/core/style/ContentData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698