Index: third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h |
index af556bb1dc1bcdf508da45422100b93247448ea0..718706f50ac1654d20babb8e7219c25482189067 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h |
+++ b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h |
@@ -42,7 +42,6 @@ namespace blink { |
class LocalFrame; |
-using protocol::ErrorString; |
using protocol::Maybe; |
using protocol::Response; |
@@ -86,8 +85,10 @@ class InspectorBaseAgent : public InspectorAgent, |
} |
} |
+ Response disable() override { return Response::OK(); } |
+ |
void dispose() override { |
- DomainMetainfo::BackendClass::disableMe(this); |
+ disable(); |
m_frontend.reset(); |
m_state = nullptr; |
m_instrumentingAgents = nullptr; |