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

Unified Diff: third_party/WebKit/Source/core/editing/EditorTest.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/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);
« no previous file with comments | « third_party/WebKit/Source/core/editing/Editor.cpp ('k') | third_party/WebKit/Source/core/editing/EphemeralRange.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698