Index: Source/core/inspector/InspectorInspectorAgent.h |
diff --git a/Source/core/inspector/InspectorInspectorAgent.h b/Source/core/inspector/InspectorInspectorAgent.h |
index a85ea23cdd822ff724a63d8172615403b18099aa..7e1b4101f09744dea734d5bedbb095c88b584741 100644 |
--- a/Source/core/inspector/InspectorInspectorAgent.h |
+++ b/Source/core/inspector/InspectorInspectorAgent.h |
@@ -32,7 +32,6 @@ |
#include "core/InspectorFrontend.h" |
#include "core/inspector/InspectorBaseAgent.h" |
-#include "wtf/HashMap.h" |
#include "wtf/PassOwnPtr.h" |
#include "wtf/Vector.h" |
@@ -65,8 +64,6 @@ public: |
virtual void setFrontend(InspectorFrontend*) override; |
virtual void clearFrontend() override; |
- void didClearDocumentOfWindowObject(LocalFrame*); |
- |
void domContentLoadedEventFired(LocalFrame*); |
bool hasFrontend() const { return m_frontend; } |
@@ -74,8 +71,6 @@ public: |
// Generic code called from custom implementations. |
void evaluateForTestInFrontend(long testCallId, const String& script); |
- void setInjectedScriptForOrigin(const String& origin, const String& source); |
- |
void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints); |
private: |
@@ -87,8 +82,6 @@ private: |
Vector<pair<long, String> > m_pendingEvaluateTestCommands; |
pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject> > m_pendingInspectData; |
- typedef HashMap<String, String> InjectedScriptForOriginMap; |
- InjectedScriptForOriginMap m_injectedScriptForOrigin; |
}; |
} // namespace blink |