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

Unified Diff: Source/core/page/FrameTree.cpp

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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 | « Source/core/page/FocusController.cpp ('k') | Source/core/page/HistoryController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/FrameTree.cpp
diff --git a/Source/core/page/FrameTree.cpp b/Source/core/page/FrameTree.cpp
index cc01cfb16c3673b966c9c19d021aa74db422c765..1b58ce5523bb4af9723e85bf099df66d6ec28579 100644
--- a/Source/core/page/FrameTree.cpp
+++ b/Source/core/page/FrameTree.cpp
@@ -51,7 +51,7 @@ FrameTree::~FrameTree()
{
// FIXME: Why is this here? Doesn't this parallel what we already do in ~Frame?
for (Frame* child = firstChild(); child; child = child->tree().nextSibling())
- child->setView(0);
+ child->setView(nullptr);
}
void FrameTree::setName(const AtomicString& name)
« no previous file with comments | « Source/core/page/FocusController.cpp ('k') | Source/core/page/HistoryController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698