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

Unified Diff: Source/core/html/PluginDocument.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/html/LabelableElement.cpp ('k') | Source/core/html/canvas/CanvasRenderingContext2D.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/PluginDocument.cpp
diff --git a/Source/core/html/PluginDocument.cpp b/Source/core/html/PluginDocument.cpp
index 59451bf1fcc3036e64d7b521e73f65c15545d1cb..3e450745730df770c20212d231271ff3f2004c08 100644
--- a/Source/core/html/PluginDocument.cpp
+++ b/Source/core/html/PluginDocument.cpp
@@ -54,7 +54,7 @@ public:
private:
PluginDocumentParser(Document* document)
: RawDataDocumentParser(document)
- , m_embedElement(0)
+ , m_embedElement(nullptr)
{
}
@@ -134,7 +134,7 @@ void PluginDocumentParser::finish()
view->didFinishLoading();
else
view->didFailLoading(error);
- m_embedElement = 0;
+ m_embedElement = nullptr;
}
RawDataDocumentParser::finish();
}
@@ -178,7 +178,7 @@ Node* PluginDocument::pluginNode()
void PluginDocument::detach(const AttachContext& context)
{
// Release the plugin node so that we don't have a circular reference.
- m_pluginNode = 0;
+ m_pluginNode = nullptr;
HTMLDocument::detach(context);
}
« no previous file with comments | « Source/core/html/LabelableElement.cpp ('k') | Source/core/html/canvas/CanvasRenderingContext2D.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698