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

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

Issue 23290002: Complete migration to InspectorFrontendHost.sendMessageToFrontendHost. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 3 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 | « no previous file | Source/core/inspector/InspectorFrontendHost.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorFrontendClient.h
diff --git a/Source/core/inspector/InspectorFrontendClient.h b/Source/core/inspector/InspectorFrontendClient.h
index 839bf6f7b6774352dfd28d3e3cfa5619a0d5ea62..00848e1e8b822ed16487b4de6cb93f16c35c9803 100644
--- a/Source/core/inspector/InspectorFrontendClient.h
+++ b/Source/core/inspector/InspectorFrontendClient.h
@@ -38,39 +38,15 @@ namespace WebCore {
class InspectorFrontendClient {
public:
- enum DockSide {
- Undocked = 0,
- DockedToRight,
- DockedToBottom
- };
-
virtual ~InspectorFrontendClient() { }
virtual void windowObjectCleared() = 0;
- virtual void moveWindowBy(float x, float y) = 0;
-
- virtual void bringToFront() = 0;
- virtual void closeWindow() = 0;
-
- virtual void requestSetDockSide(DockSide) = 0;
- virtual void changeAttachedWindowHeight(unsigned) = 0;
-
- virtual void openInNewTab(const String& url) = 0;
-
- virtual void save(const WTF::String& url, const WTF::String& content, bool forceSaveAs) = 0;
- virtual void append(const WTF::String& url, const WTF::String& content) = 0;
virtual void inspectedURLChanged(const String&) = 0;
virtual void sendMessageToBackend(const String&) = 0;
- virtual void sendMessageToEmbedder(const String&) = 0;
- virtual void requestFileSystems() = 0;
- virtual void addFileSystem() = 0;
- virtual void removeFileSystem(const String& fileSystemPath) = 0;
- virtual void indexPath(int requestId, const String& fileSystemPath) = 0;
- virtual void stopIndexing(int requestId) = 0;
- virtual void searchInPath(int requestId, const String& fileSystemPath, const String& query) = 0;
+ virtual void sendMessageToEmbedder(const String&) = 0;
virtual bool isUnderTest() = 0;
};
« no previous file with comments | « no previous file | Source/core/inspector/InspectorFrontendHost.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698