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

Unified Diff: Source/core/inspector/InspectorFrontendHost.cpp

Issue 423673004: [DevTools] Switch from separate sendMessageToBackend method to using embedder. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/InspectorFrontendHost.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorFrontendHost.cpp
diff --git a/Source/core/inspector/InspectorFrontendHost.cpp b/Source/core/inspector/InspectorFrontendHost.cpp
index ec9c9ab28a63ead82c1c4f06925cdef61b92adf9..940e84260f752132864053e599d193ef82f7efaa 100644
--- a/Source/core/inspector/InspectorFrontendHost.cpp
+++ b/Source/core/inspector/InspectorFrontendHost.cpp
@@ -189,12 +189,6 @@ static String escapeUnicodeNonCharacters(const String& str)
return dst.toString();
}
-void InspectorFrontendHost::sendMessageToBackend(const String& message)
-{
- if (m_client)
- m_client->sendMessageToBackend(escapeUnicodeNonCharacters(message));
-}
-
void InspectorFrontendHost::sendMessageToEmbedder(const String& message)
{
if (m_client)
« no previous file with comments | « Source/core/inspector/InspectorFrontendClient.h ('k') | Source/core/inspector/InspectorFrontendHost.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698