| Index: third_party/WebKit/Source/modules/cachestorage/Cache.cpp
|
| diff --git a/third_party/WebKit/Source/modules/cachestorage/Cache.cpp b/third_party/WebKit/Source/modules/cachestorage/Cache.cpp
|
| index bf116ee56a605103d1c0f706b9f2fe1661d84e4e..a47a7109f13bb3d1f8026c1068320059b7b7ce49 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/Cache.cpp
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/Cache.cpp
|
| @@ -4,11 +4,13 @@
|
|
|
| #include "modules/cachestorage/Cache.h"
|
|
|
| +#include <memory>
|
| +#include <utility>
|
| #include "bindings/core/v8/CallbackPromiseAdapter.h"
|
| #include "bindings/core/v8/ExceptionState.h"
|
| #include "bindings/core/v8/ScriptPromiseResolver.h"
|
| #include "bindings/core/v8/ScriptState.h"
|
| -#include "bindings/core/v8/V8Binding.h"
|
| +#include "bindings/core/v8/V8BindingForCore.h"
|
| #include "bindings/core/v8/V8ThrowException.h"
|
| #include "bindings/modules/v8/V8Response.h"
|
| #include "core/dom/DOMException.h"
|
| @@ -22,8 +24,6 @@
|
| #include "platform/HTTPNames.h"
|
| #include "platform/Histogram.h"
|
| #include "public/platform/modules/serviceworker/WebServiceWorkerCache.h"
|
| -#include <memory>
|
| -#include <utility>
|
|
|
| namespace blink {
|
|
|
|
|