Searched defs:routing_id (Results 1 - 25 of 122) sorted by relevance

12345

/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/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/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/browser/screen_orientation/
H A Dscreen_orientation_dispatcher_host_impl.h59 LockInformation(int request_id, int process_id, int routing_id);
62 int routing_id; member in struct:content::ScreenOrientationDispatcherHostImpl::LockInformation
/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
H A Dweb_contents_observer.cc63 int WebContentsObserver::routing_id() const { function in class:content::WebContentsObserver
/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/content/browser/renderer_host/
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_host.h38 WebSocketHost(int routing_id,
48 // delegates to this method after looking up the |routing_id|.
51 int routing_id() const { return routing_id_; } function in class:content::WebSocketHost
/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_wrapper.h20 int routing_id,
26 int routing_id() const { return routing_id_; } function in class:content::InputHandlerWrapper
/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);
/external/chromium_org/content/renderer/shared_worker/
H A Dembedded_shared_worker_permission_client_proxy.cc18 int routing_id,
22 routing_id_(routing_id),
15 EmbeddedSharedWorkerPermissionClientProxy( const GURL& origin_url, bool is_unique_origin, int routing_id, ThreadSafeSender* thread_safe_sender) argument
/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
H A Dtest_render_view_host_factory.cc33 int routing_id,
37 instance, delegate, widget_delegate, routing_id, main_frame_routing_id,
29 CreateRenderViewHost( SiteInstance* instance, RenderViewHostDelegate* delegate, RenderWidgetHostDelegate* widget_delegate, int routing_id, int main_frame_routing_id, bool swapped_out) argument
/external/chromium_org/ipc/
H A Dipc_forwarding_message_filter.cc23 void ForwardingMessageFilter::AddRoute(int routing_id, const Handler& handler) { argument
26 handlers_.insert(std::make_pair(routing_id, handler));
29 void ForwardingMessageFilter::RemoveRoute(int routing_id) { argument
31 handlers_.erase(routing_id);
44 std::map<int, Handler>::iterator it = handlers_.find(message.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/ppapi/proxy/
H A Dconnection.h31 Connection(IPC::Sender* browser, IPC::Sender* renderer, int routing_id) argument
35 browser_sender_routing_id(routing_id) {
/external/chromium_org/chrome/browser/chromeos/
H A Dexternal_protocol_dialog.cc34 const GURL& url, int render_process_host_id, int routing_id) {
36 render_process_host_id, routing_id);
33 RunExternalProtocolDialog( const GURL& url, int render_process_host_id, int routing_id) argument
/external/chromium_org/chrome/browser/ui/views/
H A Dexternal_protocol_dialog.cc34 const GURL& url, int render_process_host_id, int routing_id) {
38 routing_id));
47 routing_id);
123 int routing_id)
126 routing_id_(routing_id),
33 RunExternalProtocolDialog( const GURL& url, int render_process_host_id, int routing_id) argument
120 ExternalProtocolDialog( scoped_ptr<const ProtocolDialogDelegate> delegate, int render_process_host_id, int routing_id) argument
/external/chromium_org/content/browser/android/in_process/
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/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...]

Completed in 460 milliseconds

12345