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

Side by Side Diff: Source/web/InspectorFrontendClientImpl.h

Issue 23289002: Introduce 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/externs.js ('k') | Source/web/InspectorFrontendClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 virtual void changeAttachedWindowHeight(unsigned); 62 virtual void changeAttachedWindowHeight(unsigned);
63 63
64 virtual void openInNewTab(const String& url); 64 virtual void openInNewTab(const String& url);
65 65
66 virtual void save(const WTF::String& urk, const WTF::String& content, bool f orceSaveAs); 66 virtual void save(const WTF::String& urk, const WTF::String& content, bool f orceSaveAs);
67 virtual void append(const WTF::String& urk, const WTF::String& content); 67 virtual void append(const WTF::String& urk, const WTF::String& content);
68 68
69 virtual void inspectedURLChanged(const WTF::String&); 69 virtual void inspectedURLChanged(const WTF::String&);
70 70
71 virtual void sendMessageToBackend(const WTF::String&); 71 virtual void sendMessageToBackend(const WTF::String&);
72 virtual void sendMessageToEmbedder(const WTF::String&);
72 73
73 virtual void requestFileSystems(); 74 virtual void requestFileSystems();
74 virtual void addFileSystem(); 75 virtual void addFileSystem();
75 virtual void removeFileSystem(const String& fileSystemPath); 76 virtual void removeFileSystem(const String& fileSystemPath);
76 virtual void indexPath(int requestId, const String& fileSystemPath); 77 virtual void indexPath(int requestId, const String& fileSystemPath);
77 virtual void stopIndexing(int requestId); 78 virtual void stopIndexing(int requestId);
78 virtual void searchInPath(int requestId, const String& fileSystemPath, const String& query); 79 virtual void searchInPath(int requestId, const String& fileSystemPath, const String& query);
79 80
80 virtual bool isUnderTest(); 81 virtual bool isUnderTest();
81 82
82 private: 83 private:
83 WebCore::Page* m_frontendPage; 84 WebCore::Page* m_frontendPage;
84 WebDevToolsFrontendClient* m_client; 85 WebDevToolsFrontendClient* m_client;
85 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost; 86 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost;
86 }; 87 };
87 88
88 } // namespace WebKit 89 } // namespace WebKit
89 90
90 #endif 91 #endif
OLDNEW
« no previous file with comments | « Source/devtools/front_end/externs.js ('k') | Source/web/InspectorFrontendClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698