| Index: third_party/WebKit/Source/core/editing/EditorTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/EditorTest.cpp b/third_party/WebKit/Source/core/editing/EditorTest.cpp
|
| index b92e8a45c8c2d0b1cfaeb7d7ae44c84221ecd820..6bff66d7182c8752877eded07e336c8c88c24a06 100644
|
| --- a/third_party/WebKit/Source/core/editing/EditorTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/EditorTest.cpp
|
| @@ -26,7 +26,7 @@ void EditorTest::makeDocumentEmpty()
|
|
|
| TEST_F(EditorTest, tidyUpHTMLStructureFromBody)
|
| {
|
| - RefPtrWillBeRawPtr<Element> body = HTMLBodyElement::create(document());
|
| + RawPtr<Element> body = HTMLBodyElement::create(document());
|
| makeDocumentEmpty();
|
| document().setDesignMode("on");
|
| document().appendChild(body);
|
| @@ -39,7 +39,7 @@ TEST_F(EditorTest, tidyUpHTMLStructureFromBody)
|
|
|
| TEST_F(EditorTest, tidyUpHTMLStructureFromDiv)
|
| {
|
| - RefPtrWillBeRawPtr<Element> div = HTMLDivElement::create(document());
|
| + RawPtr<Element> div = HTMLDivElement::create(document());
|
| makeDocumentEmpty();
|
| document().setDesignMode("on");
|
| document().appendChild(div);
|
| @@ -52,7 +52,7 @@ TEST_F(EditorTest, tidyUpHTMLStructureFromDiv)
|
|
|
| TEST_F(EditorTest, tidyUpHTMLStructureFromHead)
|
| {
|
| - RefPtrWillBeRawPtr<Element> head = HTMLHeadElement::create(document());
|
| + RawPtr<Element> head = HTMLHeadElement::create(document());
|
| makeDocumentEmpty();
|
| document().setDesignMode("on");
|
| document().appendChild(head);
|
|
|