Home
last modified time | relevance | path

Searched refs:DevToolsProtocol (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/content/browser/devtools/
Drenderer_overrides_handler.h32 : public DevToolsProtocol::Handler {
43 void ParseCaptureParameters(DevToolsProtocol::Command* command,
48 scoped_refptr<DevToolsProtocol::Response>
50 scoped_refptr<DevToolsProtocol::Command> command);
53 scoped_refptr<DevToolsProtocol::Response> PageDisable(
54 scoped_refptr<DevToolsProtocol::Command> command);
55 scoped_refptr<DevToolsProtocol::Response> PageHandleJavaScriptDialog(
56 scoped_refptr<DevToolsProtocol::Command> command);
57 scoped_refptr<DevToolsProtocol::Response> PageNavigate(
58 scoped_refptr<DevToolsProtocol::Command> command);
[all …]
Ddevtools_protocol.cc37 DevToolsProtocol::Message::~Message() { in ~Message()
40 DevToolsProtocol::Message::Message(const std::string& method, in Message()
49 DevToolsProtocol::Command::~Command() { in ~Command()
52 std::string DevToolsProtocol::Command::Serialize() { in Serialize()
64 scoped_refptr<DevToolsProtocol::Response>
65 DevToolsProtocol::Command::SuccessResponse(base::DictionaryValue* result) { in SuccessResponse()
66 return new DevToolsProtocol::Response(id_, result); in SuccessResponse()
69 scoped_refptr<DevToolsProtocol::Response>
70 DevToolsProtocol::Command::InternalErrorResponse(const std::string& message) { in InternalErrorResponse()
71 return new DevToolsProtocol::Response(id_, kErrorInternalError, message); in InternalErrorResponse()
[all …]
Ddevtools_browser_target.cc30 DevToolsProtocol::Handler* handler, in RegisterDomainHandler()
46 scoped_refptr<DevToolsProtocol::Command> command = in HandleMessage()
47 DevToolsProtocol::ParseCommand(data, &error_response); in HandleMessage()
59 DevToolsProtocol::Handler* handler = it->second; in HandleMessage()
63 scoped_refptr<DevToolsProtocol::Response> response = in HandleMessage()
87 std::vector<DevToolsProtocol::Handler*> ui_handlers; in Detach()
109 DevToolsProtocol::Handler* handler, in HandleCommandOnUIThread()
110 scoped_refptr<DevToolsProtocol::Command> command) { in HandleCommandOnUIThread()
111 scoped_refptr<DevToolsProtocol::Response> response = in HandleCommandOnUIThread()
123 std::vector<DevToolsProtocol::Handler*> handlers) { in DeleteHandlersOnUIThread()
Ddevtools_protocol.h22 class DevToolsProtocol {
74 friend class DevToolsProtocol;
92 friend class DevToolsProtocol; variable
113 friend class DevToolsProtocol;
125 typedef base::Callback<scoped_refptr<DevToolsProtocol::Response>(
126 scoped_refptr<DevToolsProtocol::Command> command)> CommandHandler;
130 virtual scoped_refptr<DevToolsProtocol::Response> HandleCommand(
131 scoped_refptr<DevToolsProtocol::Command> command);
145 void SendAsyncResponse(scoped_refptr<DevToolsProtocol::Response> response);
179 DevToolsProtocol() {} in DevToolsProtocol() function
[all …]
Dtethering_handler.h17 class TetheringHandler : public DevToolsProtocol::Handler {
28 scoped_refptr<DevToolsProtocol::Response> OnBind(
29 scoped_refptr<DevToolsProtocol::Command> command);
30 scoped_refptr<DevToolsProtocol::Response> OnUnbind(
31 scoped_refptr<DevToolsProtocol::Command> command);
Ddevtools_tracing_handler.h20 class DevToolsTracingHandler : public DevToolsProtocol::Handler {
30 scoped_refptr<DevToolsProtocol::Response> OnStart(
31 scoped_refptr<DevToolsProtocol::Command> command);
32 scoped_refptr<DevToolsProtocol::Response> OnEnd(
33 scoped_refptr<DevToolsProtocol::Command> command);
Ddevtools_browser_target.h43 DevToolsProtocol::Handler* handler,
55 DevToolsProtocol::Handler*,
56 scoped_refptr<DevToolsProtocol::Command> command);
59 std::vector<DevToolsProtocol::Handler*> handlers);
68 typedef std::map<std::string, DevToolsProtocol::Handler*> DomainHandlerMap;
Drenderer_overrides_handler_browsertest.cc19 scoped_refptr<DevToolsProtocol::Response> SendCommand( in SendCommand()
23 scoped_refptr<DevToolsProtocol::Command> command( in SendCommand()
24 DevToolsProtocol::CreateCommand(1, method, params)); in SendCommand()
30 scoped_refptr<DevToolsProtocol::Command> command( in SendAsyncCommand()
31 DevToolsProtocol::CreateCommand(1, method, params)); in SendAsyncCommand()
32 scoped_refptr<DevToolsProtocol::Response> response = in SendAsyncCommand()
Drenderer_overrides_handler.cc206 scoped_refptr<DevToolsProtocol::Command>(), format, quality, in InnerSwapCompositorFrame()
211 DevToolsProtocol::Command* command, in ParseCaptureParameters()
251 scoped_refptr<DevToolsProtocol::Response>
253 scoped_refptr<DevToolsProtocol::Command> command) { in GrantPermissionsForSetFileInputFiles()
277 scoped_refptr<DevToolsProtocol::Response>
279 scoped_refptr<DevToolsProtocol::Command> command) { in PageDisable()
284 scoped_refptr<DevToolsProtocol::Response>
286 scoped_refptr<DevToolsProtocol::Command> command) { in PageHandleJavaScriptDialog()
316 scoped_refptr<DevToolsProtocol::Response>
318 scoped_refptr<DevToolsProtocol::Command> command) { in PageNavigate()
[all …]
Ddevtools_system_info_handler.h14 : public DevToolsProtocol::Handler {
20 scoped_refptr<DevToolsProtocol::Response> OnGetInfo(
21 scoped_refptr<DevToolsProtocol::Command> command);
Drender_view_devtools_agent_host.cc127 DevToolsProtocol::Notifier notifier(base::Bind( in RenderViewDevToolsAgentHost()
143 scoped_refptr<DevToolsProtocol::Command> command = in DispatchOnInspectorBackend()
144 DevToolsProtocol::ParseCommand(message, &error_message); in DispatchOnInspectorBackend()
147 scoped_refptr<DevToolsProtocol::Response> overridden_response = in DispatchOnInspectorBackend()
337 scoped_refptr<DevToolsProtocol::Notification> notification = in RenderViewCrashed()
338 DevToolsProtocol::CreateNotification( in RenderViewCrashed()
Ddevtools_tracing_handler.cc130 scoped_refptr<DevToolsProtocol::Response>
132 scoped_refptr<DevToolsProtocol::Command> command) { in OnStart()
151 scoped_refptr<DevToolsProtocol::Response>
153 scoped_refptr<DevToolsProtocol::Command> command) { in OnEnd()
Dtethering_handler.cc267 static int GetPort(scoped_refptr<DevToolsProtocol::Command> command) { in GetPort()
276 scoped_refptr<DevToolsProtocol::Response>
277 TetheringHandler::OnBind(scoped_refptr<DevToolsProtocol::Command> command) { in OnBind()
293 scoped_refptr<DevToolsProtocol::Response>
294 TetheringHandler::OnUnbind(scoped_refptr<DevToolsProtocol::Command> command) { in OnUnbind()
Ddevtools_system_info_handler.cc101 scoped_refptr<DevToolsProtocol::Response>
103 scoped_refptr<DevToolsProtocol::Command> command) { in OnGetInfo()
Dworker_devtools_manager.cc183 std::string notification = DevToolsProtocol::CreateNotification( in WorkerDestroyed()
Ddevtools_http_handler_impl.cc92 std::string response = DevToolsProtocol::CreateNotification( in InspectedContentsClosing()
/external/chromium_org/chrome/browser/devtools/
Ddevtools_protocol.cc18 DevToolsProtocol::Message::~Message() { in ~Message()
21 DevToolsProtocol::Message::Message(const std::string& method, in Message()
27 DevToolsProtocol::Command::Command(int id, in Command()
34 DevToolsProtocol::Command::~Command() { in ~Command()
37 std::string DevToolsProtocol::Command::Serialize() { in Serialize()
49 DevToolsProtocol::Notification::~Notification() { in ~Notification()
52 DevToolsProtocol::Notification::Notification(const std::string& method, in Notification()
57 DevToolsProtocol::Response::~Response() { in ~Response()
60 DevToolsProtocol::Response::Response(int id, int error_code) in Response()
66 DevToolsProtocol::Notification* DevToolsProtocol::ParseNotification( in ParseNotification()
[all …]
Ddevtools_protocol.h17 class DevToolsProtocol {
60 friend class DevToolsProtocol;
74 friend class DevToolsProtocol;
91 DevToolsProtocol() {} in DevToolsProtocol() function
92 ~DevToolsProtocol() {} in ~DevToolsProtocol()
Dport_forwarding_controller.cc407 DevToolsProtocol::Command command(++command_id_, method, &params); in SendCommand()
442 scoped_ptr<DevToolsProtocol::Response> response( in ProcessResponse()
443 DevToolsProtocol::ParseResponse(message)); in ProcessResponse()
536 scoped_ptr<DevToolsProtocol::Notification> notification( in ProcessIncomingMessage()
537 DevToolsProtocol::ParseNotification(message)); in ProcessIncomingMessage()
Ddevtools_adb_bridge.cc1040 DevToolsProtocol::Command command(1, method, params); in SendProtocolCommand()