| Index: third_party/WebKit/Source/core/loader/ImageLoader.h
|
| diff --git a/third_party/WebKit/Source/core/loader/ImageLoader.h b/third_party/WebKit/Source/core/loader/ImageLoader.h
|
| index 5ac085d4687d07475824ad8d4274589ee7617c40..b7fa112c7936c91b15efe6cd35eb1d58046eec43 100644
|
| --- a/third_party/WebKit/Source/core/loader/ImageLoader.h
|
| +++ b/third_party/WebKit/Source/core/loader/ImageLoader.h
|
| @@ -31,7 +31,6 @@
|
| #include "wtf/HashSet.h"
|
| #include "wtf/WeakPtr.h"
|
| #include "wtf/text/AtomicString.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -159,7 +158,7 @@ private:
|
| Timer<ImageLoader> m_derefElementTimer;
|
| AtomicString m_failedLoadURL;
|
| WeakPtr<Task> m_pendingTask; // owned by Microtask
|
| - std::unique_ptr<IncrementLoadEventDelayCount> m_loadDelayCounter;
|
| + OwnPtr<IncrementLoadEventDelayCount> m_loadDelayCounter;
|
| bool m_hasPendingLoadEvent : 1;
|
| bool m_hasPendingErrorEvent : 1;
|
| bool m_imageComplete : 1;
|
|
|