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

Unified Diff: Source/core/editing/FrameSelectionTest.cpp

Issue 421883002: Oilpan: fix build after r179003. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/FrameSelectionTest.cpp
diff --git a/Source/core/editing/FrameSelectionTest.cpp b/Source/core/editing/FrameSelectionTest.cpp
index 56f51e85204181d7926cb22a2fcd5a33ae2d9809..6981cd07c5550aed671381ba8118ae6c1027abe8 100644
--- a/Source/core/editing/FrameSelectionTest.cpp
+++ b/Source/core/editing/FrameSelectionTest.cpp
@@ -44,7 +44,7 @@ void FrameSelectionTest::SetUp()
m_document = toHTMLDocument(&m_dummyPageHolder->document());
ASSERT(m_document);
m_textNode = m_document->createTextNode("Hello, World!");
- m_document->body()->appendChild(m_textNode);
+ m_document->body()->appendChild(m_textNode.get());
}
HTMLDocument& FrameSelectionTest::document() const
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698