| Index: third_party/WebKit/Source/core/html/parser/HTMLViewSourceParser.h
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLViewSourceParser.h b/third_party/WebKit/Source/core/html/parser/HTMLViewSourceParser.h
|
| index 907a57fda66ecd4969a9a6eb70ca95e0fad5cc2d..1aca1d25e9040a874b0f2f68161451fe44f6acc0 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLViewSourceParser.h
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLViewSourceParser.h
|
| @@ -32,7 +32,6 @@
|
| #include "core/html/parser/HTMLSourceTracker.h"
|
| #include "core/html/parser/HTMLTokenizer.h"
|
| #include "core/html/parser/XSSAuditor.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -60,7 +59,7 @@ private:
|
| HTMLInputStream m_input;
|
| HTMLToken m_token;
|
| HTMLSourceTracker m_sourceTracker;
|
| - std::unique_ptr<HTMLTokenizer> m_tokenizer;
|
| + OwnPtr<HTMLTokenizer> m_tokenizer;
|
| XSSAuditor m_xssAuditor;
|
| };
|
|
|
|
|