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); |
} |