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