Searched refs:routing_id (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/android/
H A Dexternal_protocol_dialog_android.cc11 const GURL& url, int render_process_host_id, int routing_id) {
10 RunExternalProtocolDialog( const GURL& url, int render_process_host_id, int routing_id) argument
/external/chromium_org/content/browser/renderer_host/
H A Dwebsocket_dispatcher_host.cc47 WebSocketHost* WebSocketDispatcherHost::CreateWebSocketHost(int routing_id) { argument
48 return new WebSocketHost(routing_id, this, get_context_callback_.Run());
65 int routing_id = message.routing_id(); local
66 WebSocketHost* host = GetHost(routing_id);
69 DVLOG(1) << "routing_id=" << routing_id << " already in use.";
76 host = websocket_host_factory_.Run(routing_id);
77 hosts_.insert(WebSocketHostTable::value_type(routing_id, host));
80 DVLOG(1) << "Received invalid routing ID " << routing_id
111 SendAddChannelResponse( int routing_id, bool fail, const std::string& selected_protocol, const std::string& extensions) argument
127 SendFrame( int routing_id, bool fin, WebSocketMessageType type, const std::vector<char>& data) argument
135 SendFlowControl(int routing_id, int64 quota) argument
140 NotifyClosingHandshake( int routing_id) argument
145 NotifyStartOpeningHandshake( int routing_id, const WebSocketHandshakeRequest& request) argument
151 NotifyFinishOpeningHandshake( int routing_id, const WebSocketHandshakeResponse& response) argument
157 NotifyFailure( int routing_id, const std::string& message) argument
168 DoDropChannel( int routing_id, bool was_clean, uint16 code, const std::string& reason) argument
200 DeleteWebSocketHost(int routing_id) argument
[all...]
H A Dwebsocket_dispatcher_host.h35 // Given a routing_id, WebSocketHostFactory returns a new instance of
69 int routing_id,
75 WebSocketHostState SendFrame(int routing_id,
81 WebSocketHostState SendFlowControl(int routing_id,
85 WebSocketHostState NotifyClosingHandshake(int routing_id) WARN_UNUSED_RESULT;
89 int routing_id,
94 int routing_id,
100 int routing_id,
106 int routing_id,
121 WebSocketHost* CreateWebSocketHost(int routing_id);
[all...]
H A Drender_view_host_factory.cc20 int routing_id,
26 routing_id, main_frame_routing_id,
29 return new RenderViewHostImpl(instance, delegate, widget_delegate, routing_id,
16 Create( SiteInstance* instance, RenderViewHostDelegate* delegate, RenderWidgetHostDelegate* widget_delegate, int routing_id, int main_frame_routing_id, bool swapped_out, bool hidden) argument
H A Dwebsocket_dispatcher_host_unittest.cc33 MockWebSocketHost(int routing_id,
69 void GoAway(int routing_id) { argument
70 gone_hosts_.push_back(routing_id);
92 WebSocketHost* CreateWebSocketHost(int routing_id) { argument
94 new MockWebSocketHost(routing_id, dispatcher_host_.get(), NULL, this);
101 int routing_id,
105 : WebSocketHost(routing_id, dispatcher, url_request_context),
110 owner_->GoAway(routing_id());
127 int routing_id = 123; local
134 routing_id, socket_ur
100 MockWebSocketHost( int routing_id, WebSocketDispatcherHost* dispatcher, net::URLRequestContext* url_request_context, WebSocketDispatcherHostTest* owner) argument
148 int routing_id = 123; local
160 int routing_id = 123; local
[all...]
/external/chromium_org/content/public/browser/
H A Dax_event_notification_details.cc15 int routing_id)
21 routing_id(routing_id) {
9 AXEventNotificationDetails( int node_id_to_clear, const std::vector<ui::AXNodeData>& nodes, ui::AXEvent event_type, int id, int process_id, int routing_id) argument
H A Dax_event_notification_details.h25 int routing_id);
34 int routing_id; member in struct:content::AXEventNotificationDetails
/external/chromium_org/content/browser/android/in_process/
H A Dsynchronous_input_event_filter.h31 InputEventAckState HandleInputEvent(int routing_id,
36 virtual void DidAddInputHandler(int routing_id,
38 virtual void DidRemoveInputHandler(int routing_id) OVERRIDE;
39 virtual void DidOverscroll(int routing_id,
41 virtual void DidStopFlinging(int routing_id) OVERRIDE;
H A Dsynchronous_input_event_filter.cc24 int routing_id,
32 return handler_.Run(routing_id, &input_event, &latency);
49 int routing_id,
54 SynchronousCompositorImpl::FromRoutingID(routing_id);
59 void SynchronousInputEventFilter::DidRemoveInputHandler(int routing_id) { argument
63 SynchronousCompositorImpl::FromRoutingID(routing_id);
69 int routing_id,
74 SynchronousCompositorImpl::FromRoutingID(routing_id);
79 void SynchronousInputEventFilter::DidStopFlinging(int routing_id) { argument
83 SynchronousCompositorImpl::FromRoutingID(routing_id);
23 HandleInputEvent( int routing_id, const blink::WebInputEvent& input_event) argument
48 DidAddInputHandler( int routing_id, cc::InputHandler* input_handler) argument
68 DidOverscroll( int routing_id, const DidOverscrollParams& params) argument
[all...]
/external/chromium_org/content/common/
H A Dmessage_router.cc29 bool MessageRouter::AddRoute(int32 routing_id, IPC::Listener* listener) { argument
30 if (routes_.Lookup(routing_id)) {
34 routes_.AddWithID(listener, routing_id);
38 void MessageRouter::RemoveRoute(int32 routing_id) { argument
39 routes_.Remove(routing_id);
43 if (msg.routing_id() == MSG_ROUTING_CONTROL)
50 IPC::Listener* listener = routes_.Lookup(msg.routing_id());
/external/chromium_org/content/renderer/input/
H A Dinput_handler_manager.cc52 int routing_id,
56 AddInputHandlerOnCompositorThread(routing_id,
65 routing_id,
73 int routing_id,
84 if (input_handlers_.count(routing_id) != 0)
90 client_->DidAddInputHandler(routing_id, input_handler.get());
91 input_handlers_.add(routing_id,
93 routing_id, main_loop, input_handler, render_view_impl)));
96 void InputHandlerManager::RemoveInputHandler(int routing_id) { argument
98 DCHECK(input_handlers_.contains(routing_id));
51 AddInputHandler( int routing_id, const base::WeakPtr<cc::InputHandler>& input_handler, const base::WeakPtr<RenderViewImpl>& render_view_impl) argument
72 AddInputHandlerOnCompositorThread( int routing_id, const scoped_refptr<base::MessageLoopProxy>& main_loop, const base::WeakPtr<cc::InputHandler>& input_handler, const base::WeakPtr<RenderViewImpl>& render_view_impl) argument
106 HandleInputEvent( int routing_id, const WebInputEvent* input_event, ui::LatencyInfo* latency_info) argument
125 DidOverscroll(int routing_id, const DidOverscrollParams& params) argument
130 DidStopFlinging(int routing_id) argument
[all...]
H A Dinput_handler_manager_client.h37 InputEventAckState(int /*routing_id*/,
45 virtual void DidAddInputHandler(int routing_id,
47 virtual void DidRemoveInputHandler(int routing_id) = 0;
48 virtual void DidOverscroll(int routing_id,
50 virtual void DidStopFlinging(int routing_id) = 0;
H A Dinput_handler_manager.h45 int routing_id,
50 void RemoveInputHandler(int routing_id);
53 InputEventAckState HandleInputEvent(int routing_id,
58 void DidOverscroll(int routing_id, const DidOverscrollParams& params);
61 void DidStopFlinging(int routing_id);
66 int routing_id,
71 typedef base::ScopedPtrHashMap<int, // routing_id
/external/chromium_org/ppapi/host/
H A Dhost_message_context.cc11 : sync_reply_msg(NULL), routing_id(MSG_ROUTING_NONE) {}
16 int routing_id)
19 routing_id(routing_id) {
29 routing_id(MSG_ROUTING_NONE) {
33 int routing_id,
37 routing_id(routing_id) {
45 routing_id(MSG_ROUTING_NONE) {
54 return ReplyMessageContext(reply_params, sync_reply_msg, routing_id);
13 ReplyMessageContext( const ppapi::proxy::ResourceMessageReplyParams& cp, IPC::Message* sync_reply_msg, int routing_id) argument
32 HostMessageContext( int routing_id, const ppapi::proxy::ResourceMessageCallParams& cp) argument
[all...]
H A Dhost_message_context.h22 int routing_id);
41 int routing_id; member in struct:ppapi::host::ReplyMessageContext
50 int routing_id,
77 int routing_id; member in struct:ppapi::host::HostMessageContext
/external/chromium_org/content/renderer/devtools/
H A Ddevtools_agent_filter.cc24 MessageImpl(const std::string& message, int routing_id) argument
26 routing_id_(routing_id) {
52 current_routing_id_ = message.routing_id();
82 void DevToolsAgentFilter::AddEmbeddedWorkerRouteOnMainThread(int32 routing_id) { argument
86 &DevToolsAgentFilter::AddEmbeddedWorkerRoute, this, routing_id));
90 int32 routing_id) {
94 &DevToolsAgentFilter::RemoveEmbeddedWorkerRoute, this, routing_id));
97 void DevToolsAgentFilter::AddEmbeddedWorkerRoute(int32 routing_id) { argument
98 embedded_worker_routes_.insert(routing_id);
101 void DevToolsAgentFilter::RemoveEmbeddedWorkerRoute(int32 routing_id) { argument
89 RemoveEmbeddedWorkerRouteOnMainThread( int32 routing_id) argument
[all...]
H A Ddevtools_agent_filter.h39 void AddEmbeddedWorkerRouteOnMainThread(int32 routing_id);
40 void RemoveEmbeddedWorkerRouteOnMainThread(int32 routing_id);
49 void AddEmbeddedWorkerRoute(int32 routing_id);
50 void RemoveEmbeddedWorkerRoute(int32 routing_id);
/external/chromium_org/components/autofill/content/renderer/
H A Drenderer_save_password_progress_logger.cc14 int routing_id)
15 : sender_(sender), routing_id_(routing_id) {
12 RendererSavePasswordProgressLogger( IPC::Sender* sender, int routing_id) argument
/external/chromium_org/content/renderer/gpu/
H A Ddelegated_compositor_output_surface.cc11 int32 routing_id,
15 : CompositorOutputSurface(routing_id,
10 DelegatedCompositorOutputSurface( int32 routing_id, uint32 output_surface_id, const scoped_refptr<ContextProviderCommandBuffer>& context_provider, scoped_refptr<FrameSwapMessageQueue> swap_frame_message_queue) argument
/external/chromium_org/content/browser/frame_host/
H A Drender_frame_host_factory.cc22 int routing_id,
29 routing_id,
33 render_view_host, delegate, frame_tree, frame_tree_node, routing_id,
17 Create( RenderViewHostImpl* render_view_host, RenderFrameHostDelegate* delegate, FrameTree* frame_tree, FrameTreeNode* frame_tree_node, int routing_id, bool is_swapped_out) argument
/external/chromium_org/chrome/browser/extensions/api/webstore/
H A Dwebstore_api.cc25 ObservedInstallInfo(int routing_id,
30 int routing_id; member in struct:extensions::WebstoreAPI::ObservedInstallInfo
36 int routing_id,
39 : routing_id(routing_id),
60 void WebstoreAPI::OnInlineInstallStart(int routing_id, argument
66 ObservedInstallInfo(routing_id, extension_id, ipc_sender));
71 ObservedInstallInfo(routing_id, extension_id, ipc_sender));
75 void WebstoreAPI::OnInlineInstallFinished(int routing_id, argument
77 RemoveListeners(routing_id, extension_i
35 ObservedInstallInfo( int routing_id, const std::string& extension_id, IPC::Sender* ipc_sender) argument
129 RemoveListeners(int routing_id, const std::string& extension_id, ObservedInstallInfoList* listeners) argument
[all...]
/external/chromium_org/content/shell/browser/
H A Dipc_echo_message_filter.cc28 void IPCEchoMessageFilter::OnEchoPing(int routing_id, int id, argument
30 Send(new ShellViewMsg_EchoPong(routing_id, id, body));
/external/chromium_org/content/test/
H A Dtest_render_frame_host_factory.cc28 int routing_id,
32 render_view_host, delegate, frame_tree, frame_tree_node, routing_id,
23 CreateRenderFrameHost( RenderViewHostImpl* render_view_host, RenderFrameHostDelegate* delegate, FrameTree* frame_tree, FrameTreeNode* frame_tree_node, int routing_id, bool is_swapped_out) argument
/external/chromium_org/chrome/browser/android/webapps/
H A Dsingle_tab_mode_tab_helper.cc22 void AddPairOnIOThread(int32 process_id, int32 routing_id) { argument
24 RenderWidgetHostID single_tab_pair(process_id, routing_id);
28 void RemovePairOnIOThread(int32 process_id, int32 routing_id) { argument
30 RenderWidgetHostID single_tab_pair(process_id, routing_id);
41 int32 routing_id = render_view_host->GetRoutingID(); local
44 base::Bind(&AddPairOnIOThread, process_id, routing_id));
52 int32 routing_id = render_view_host->GetRoutingID(); local
55 base::Bind(&RemovePairOnIOThread, process_id, routing_id));
89 int32 routing_id) {
91 RenderWidgetHostID single_tab_pair(process_id, routing_id);
88 IsRegistered(int32 process_id, int32 routing_id) argument
[all...]
/external/chromium_org/content/renderer/
H A Drender_frame_proxy.h53 // current process to a different one. |routing_id| will be ID of the newly
58 int routing_id);
64 // new frame local to some other process. |routing_id| will be the ID of the
73 static RenderFrameProxy* CreateFrameProxy(int routing_id,
78 static RenderFrameProxy* FromRoutingID(int routing_id);
92 int routing_id() { return routing_id_; } function in class:content::RenderFrameProxy
107 RenderFrameProxy(int routing_id, int frame_routing_id);

Completed in 356 milliseconds

1234567891011>>