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

Side by Side Diff: chrome/browser/debugger/inspectable_tab_proxy.h

Issue 3005044: DevTools: Get rid of DevTools RPC. (Closed)
Patch Set: More files removed Created 10 years, 4 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 5 #ifndef CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
6 #define CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 6 #define CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 } 76 }
77 77
78 void Close(); 78 void Close();
79 79
80 // DevToolsClientHost interface 80 // DevToolsClientHost interface
81 virtual void InspectedTabClosing(); 81 virtual void InspectedTabClosing();
82 virtual void SendMessageToClient(const IPC::Message& msg); 82 virtual void SendMessageToClient(const IPC::Message& msg);
83 83
84 private: 84 private:
85 // Message handling routines 85 // Message handling routines
86 void OnRpcMessage(const DevToolsMessageData& data); 86 void OnDebuggerOutput(const std::string& msg);
87 void DebuggerOutput(const std::string& msg);
88 void FrameNavigate(const std::string& url); 87 void FrameNavigate(const std::string& url);
89 void TabClosed(); 88 void TabClosed();
90 89
91 int32 id_; 90 int32 id_;
92 DebuggerRemoteService* service_; 91 DebuggerRemoteService* service_;
93 InspectableTabProxy::IdToClientHostMap* map_; 92 InspectableTabProxy::IdToClientHostMap* map_;
94 }; 93 };
95 94
96 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 95 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
OLDNEW
« no previous file with comments | « chrome/browser/debugger/devtools_http_protocol_handler.cc ('k') | chrome/browser/debugger/inspectable_tab_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698