Index: third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp |
diff --git a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp |
index c2f9f38ced021ae3d29ab925b9c36d2231d61dc3..0c9eb8c53acd5243a3f0774d6857e3dfc482e3b9 100644 |
--- a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp |
+++ b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp |
@@ -34,7 +34,6 @@ |
#include "core/xml/DocumentXSLT.h" |
#include "core/xml/XSLStyleSheet.h" |
#include "core/xml/parser/XMLDocumentParser.h" // for parseAttributes() |
-#include <memory> |
namespace blink { |
@@ -225,7 +224,7 @@ void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& bas |
DCHECK(m_isXSL); |
m_sheet = XSLStyleSheet::create(this, href, baseURL); |
- std::unique_ptr<IncrementLoadEventDelayCount> delay = IncrementLoadEventDelayCount::create(document()); |
+ OwnPtr<IncrementLoadEventDelayCount> delay = IncrementLoadEventDelayCount::create(document()); |
parseStyleSheet(sheet); |
} |