| Index: third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| index 6c9bc26b3d79a5d96baab18362ee2c250ad8a837..e5c8b0ccd18809131264724c0064b1675a60b2be 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "modules/cachestorage/InspectorCacheStorageAgent.h"
|
| #include "platform/heap/Handle.h"
|
| -#include "platform/inspector_protocol/Dispatcher.h"
|
| +#include "platform/inspector_protocol/DispatcherBase.h"
|
| #include "platform/inspector_protocol/TypeBuilder.h"
|
| #include "platform/inspector_protocol/Values.h"
|
| #include "platform/weborigin/KURL.h"
|
| @@ -398,12 +398,9 @@ private:
|
|
|
| } // namespace
|
|
|
| -InspectorCacheStorageAgent::InspectorCacheStorageAgent()
|
| - : InspectorBaseAgent<InspectorCacheStorageAgent, protocol::CacheStorage::Frontend>("CacheStorage")
|
| -{
|
| -}
|
| +InspectorCacheStorageAgent::InspectorCacheStorageAgent() = default;
|
|
|
| -InspectorCacheStorageAgent::~InspectorCacheStorageAgent() { }
|
| +InspectorCacheStorageAgent::~InspectorCacheStorageAgent() = default;
|
|
|
| DEFINE_TRACE(InspectorCacheStorageAgent)
|
| {
|
|
|