Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(648)

Unified Diff: Source/core/inspector/InspectorInspectorAgent.h

Issue 900543003: DevTools: do not abuse inspector controller for the front-end side plumbing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed initializer. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/InspectorFrontendClient.h ('k') | Source/core/inspector/InspectorInspectorAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/inspector/InspectorFrontendClient.h ('k') | Source/core/inspector/InspectorInspectorAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698