/external/chromium_org/content/browser/devtools/ |
D | renderer_overrides_handler.h | 32 : 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 …]
|
D | devtools_protocol.cc | 37 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 …]
|
D | devtools_browser_target.cc | 30 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()
|
D | devtools_protocol.h | 22 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 …]
|
D | tethering_handler.h | 17 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);
|
D | devtools_tracing_handler.h | 20 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);
|
D | devtools_browser_target.h | 43 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;
|
D | renderer_overrides_handler_browsertest.cc | 19 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()
|
D | renderer_overrides_handler.cc | 206 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 …]
|
D | devtools_system_info_handler.h | 14 : public DevToolsProtocol::Handler { 20 scoped_refptr<DevToolsProtocol::Response> OnGetInfo( 21 scoped_refptr<DevToolsProtocol::Command> command);
|
D | render_view_devtools_agent_host.cc | 127 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()
|
D | devtools_tracing_handler.cc | 130 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()
|
D | tethering_handler.cc | 267 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()
|
D | devtools_system_info_handler.cc | 101 scoped_refptr<DevToolsProtocol::Response> 103 scoped_refptr<DevToolsProtocol::Command> command) { in OnGetInfo()
|
D | worker_devtools_manager.cc | 183 std::string notification = DevToolsProtocol::CreateNotification( in WorkerDestroyed()
|
D | devtools_http_handler_impl.cc | 92 std::string response = DevToolsProtocol::CreateNotification( in InspectedContentsClosing()
|
/external/chromium_org/chrome/browser/devtools/ |
D | devtools_protocol.cc | 18 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 …]
|
D | devtools_protocol.h | 17 class DevToolsProtocol { 60 friend class DevToolsProtocol; 74 friend class DevToolsProtocol; 91 DevToolsProtocol() {} in DevToolsProtocol() function 92 ~DevToolsProtocol() {} in ~DevToolsProtocol()
|
D | port_forwarding_controller.cc | 407 DevToolsProtocol::Command command(++command_id_, method, ¶ms); 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()
|
D | devtools_adb_bridge.cc | 1040 DevToolsProtocol::Command command(1, method, params); in SendProtocolCommand()
|