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

Unified Diff: Source/core/accessibility/AXImageMapLink.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
Index: Source/core/accessibility/AXImageMapLink.cpp
diff --git a/Source/core/accessibility/AXImageMapLink.cpp b/Source/core/accessibility/AXImageMapLink.cpp
index e4977049bcbd26ca9f5584b2754cc44f9ddcd746..02ce023193c714f81f7e1819fd2913e057e3a543 100644
--- a/Source/core/accessibility/AXImageMapLink.cpp
+++ b/Source/core/accessibility/AXImageMapLink.cpp
@@ -37,8 +37,8 @@ namespace WebCore {
using namespace HTMLNames;
AXImageMapLink::AXImageMapLink()
- : m_areaElement(0)
- , m_mapElement(0)
+ : m_areaElement(nullptr)
+ , m_mapElement(nullptr)
{
}
@@ -49,8 +49,8 @@ AXImageMapLink::~AXImageMapLink()
void AXImageMapLink::detachFromParent()
{
AXMockObject::detachFromParent();
- m_areaElement = 0;
- m_mapElement = 0;
+ m_areaElement = nullptr;
+ m_mapElement = nullptr;
}
PassRefPtr<AXImageMapLink> AXImageMapLink::create()
« no previous file with comments | « Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl ('k') | Source/core/accessibility/AXInlineTextBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698