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

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

Issue 761143003: DevTools: remove ScriptPreprocessor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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
Index: Source/core/inspector/InspectorPageAgent.h
diff --git a/Source/core/inspector/InspectorPageAgent.h b/Source/core/inspector/InspectorPageAgent.h
index 54e4e2b21d406e0b213acf36dae7429d9fb91e41..1a4dca7b93fa669013629f69a9f2900ce4128d59 100644
--- a/Source/core/inspector/InspectorPageAgent.h
+++ b/Source/core/inspector/InspectorPageAgent.h
@@ -100,7 +100,7 @@ public:
void disable(ErrorString*) override;
void addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* result) override;
void removeScriptToEvaluateOnLoad(ErrorString*, const String& identifier) override;
- void reload(ErrorString*, const bool* optionalIgnoreCache, const String* optionalScriptToEvaluateOnLoad, const String* optionalScriptPreprocessor) override;
+ void reload(ErrorString*, const bool* optionalIgnoreCache, const String* optionalScriptToEvaluateOnLoad) override;
void navigate(ErrorString*, const String& url, String* frameId) override;
void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> >& cookies) override;
void deleteCookie(ErrorString*, const String& cookieName, const String& url) override;
@@ -167,7 +167,6 @@ public:
String loaderId(DocumentLoader*);
LocalFrame* findFrameWithSecurityOrigin(const String& originRawString);
LocalFrame* assertFrame(ErrorString*, const String& frameId);
- String scriptPreprocessorSource() { return m_scriptPreprocessorSource; }
const AtomicString& resourceSourceMapURL(const String& url);
bool deviceMetricsOverrideEnabled();
void pageScaleFactorChanged();
@@ -206,8 +205,6 @@ private:
long m_lastScriptIdentifier;
String m_pendingScriptToEvaluateOnLoadOnce;
String m_scriptToEvaluateOnLoadOnce;
- String m_pendingScriptPreprocessor;
- String m_scriptPreprocessorSource;
HashMap<LocalFrame*, String> m_frameToIdentifier;
HashMap<String, LocalFrame*> m_identifierToFrame;
HashMap<DocumentLoader*, String> m_loaderToIdentifier;
« no previous file with comments | « Source/core/inspector/InspectorInstrumentationCustomInl.h ('k') | Source/core/inspector/InspectorPageAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698