| Index: third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h
|
| index bcddb7bc7d5e613e965e4659fc8ad6ad1082e814..7d4b3d6fe24f255e9801dfa3497c286c0b9fcc2e 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h
|
| @@ -30,7 +30,7 @@ public:
|
| DECLARE_TRACE();
|
|
|
| int createClientId();
|
| - void ensureResourcesContentLoaded(int clientId, std::unique_ptr<SameThreadClosure> callback);
|
| + void ensureResourcesContentLoaded(int clientId, std::unique_ptr<WTF::Closure> callback);
|
| void cancel(int clientId);
|
| void didCommitLoadForLocalFrame(LocalFrame*);
|
|
|
| @@ -44,7 +44,7 @@ private:
|
| void stop();
|
| bool hasFinished();
|
|
|
| - using Callbacks = Vector<std::unique_ptr<SameThreadClosure>>;
|
| + using Callbacks = Vector<std::unique_ptr<WTF::Closure>>;
|
| HashMap<int, Callbacks> m_callbacks;
|
| bool m_allRequestsStarted;
|
| bool m_started;
|
|
|