Searched refs:routing_id (Results 101 - 125 of 299) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/frame_host/
H A Dframe_tree.h62 // Returns the FrameTreeNode with the given renderer-specific |routing_id|.
63 FrameTreeNode* FindByRoutingID(int routing_id, int process_id);
120 int routing_id,
H A Drender_frame_proxy_host.cc35 int routing_id) {
39 RenderFrameProxyHostID(process_id, routing_id));
34 FromID(int process_id, int routing_id) argument
/external/chromium_org/extensions/renderer/
H A Dextensions_render_frame_observer.cc96 routing_id(), trimmed_message, source, stack_trace, severity_level));
102 routing_id(),
/external/chromium_org/ipc/
H A Dipc_channel_reader.cc42 return m.routing_id() == MSG_ROUTING_NONE &&
48 return m.routing_id() == MSG_ROUTING_NONE &&
H A Dipc_message_utils_unittest.cc37 EXPECT_EQ(nested_msg.routing_id(), result_msg.routing_id());
H A Dipc_message.cc54 Message::Message(int32 routing_id, uint32 type, PriorityValue priority) argument
56 header()->routing = routing_id;
/external/chromium_org/content/public/test/
H A Dmock_render_process_host.cc63 int32 routing_id,
65 listeners_.AddWithID(listener, routing_id);
68 void MockRenderProcessHost::RemoveRoute(int32 routing_id) { argument
69 DCHECK(listeners_.Lookup(routing_id) != NULL);
70 listeners_.Remove(routing_id);
253 IPC::Listener* listener = listeners_.Lookup(msg.routing_id());
62 AddRoute( int32 routing_id, IPC::Listener* listener) argument
/external/chromium_org/content/renderer/screen_orientation/
H A Dscreen_orientation_dispatcher_unittest.cc102 int routing_id() const { function in class:content::ScreenOrientationDispatcherTest
103 // We return a fake routing_id() in the context of this test.
157 ScreenOrientationMsg_LockError(routing_id(), request_id, *it));
175 OnMessageReceived(ScreenOrientationMsg_LockSuccess(routing_id(),
192 OnMessageReceived(ScreenOrientationMsg_LockSuccess(routing_id(),
208 routing_id(), request_id + 1, blink::WebLockOrientationErrorCanceled));
233 OnMessageReceived(ScreenOrientationMsg_LockSuccess(routing_id(),
/external/chromium_org/chrome/browser/printing/
H A Dprinting_message_filter.cc277 queue_->CreatePrinterQuery(render_process_id_, reply_msg->routing_id());
324 queue_->CreatePrinterQuery(render_process_id_, reply_msg->routing_id());
344 int routing_id = reply_msg->routing_id(); local
364 routing_id, file_descriptor));
399 int routing_id = reply_msg->routing_id(); local
403 &routing_id)) {
405 routing_id = content::ChildProcessHost::kInvalidUniqueID;
407 printer_query = queue_->CreatePrinterQuery(host_id, routing_id);
[all...]
/external/chromium_org/content/renderer/devtools/
H A Ddevtools_agent.cc83 g_agent_for_routing_id.Get()[routing_id()] = this;
89 g_agent_for_routing_id.Get().erase(routing_id());
119 Send(new DevToolsClientMsg_DispatchOnInspectorFrontend(routing_id(),
128 return routing_id();
133 Send(new DevToolsHostMsg_SaveAgentRuntimeState(routing_id(), state.utf8()));
258 DevToolsAgent* DevToolsAgent::FromRoutingId(int routing_id) { argument
259 IdToAgentMap::iterator it = g_agent_for_routing_id.Get().find(routing_id);
/external/chromium_org/android_webview/renderer/
H A Dprint_web_view_helper_linux.cc108 Send(new PrintHostMsg_AllocateTempFileForPrinting(routing_id(),
115 Send(new PrintHostMsg_TempFileForPrintingWritten(routing_id(),
144 Send(new PrintHostMsg_DidPrintPage(routing_id(), printed_page_params));
/external/chromium_org/chrome/renderer/printing/
H A Dprint_web_view_helper_linux.cc104 Send(new PrintHostMsg_AllocateTempFileForPrinting(routing_id(),
111 Send(new PrintHostMsg_TempFileForPrintingWritten(routing_id(),
140 Send(new PrintHostMsg_DidPrintPage(routing_id(), printed_page_params));
/external/chromium_org/components/autofill/content/renderer/
H A Dautofill_agent.cc197 Send(new AutofillHostMsg_CancelRequestAutocomplete(routing_id()));
213 Send(new AutofillHostMsg_FormSubmitted(routing_id(), form_data,
305 Send(new AutofillHostMsg_RequestAutocomplete(routing_id(), form_data, url));
342 Send(new AutofillHostMsg_DidEndTextFieldEditing(routing_id()));
396 Send(new AutofillHostMsg_TextFieldDidChange(routing_id(), form, field,
464 Send(new AutofillHostMsg_DidFillAutofillFormData(routing_id(),
469 Send(new AutofillHostMsg_PingAck(routing_id()));
478 Send(new AutofillHostMsg_DidPreviewAutofillFormData(routing_id()));
675 Send(new AutofillHostMsg_SetDataList(routing_id(),
679 Send(new AutofillHostMsg_QueryFormFieldAutofill(routing_id(),
[all...]
/external/chromium_org/content/public/browser/
H A Dweb_contents_observer.h294 virtual void DidShowFullscreenWidget(int routing_id) {} argument
295 virtual void DidDestroyFullscreenWidget(int routing_id) {} argument
329 int routing_id() const;
/external/chromium_org/content/renderer/pepper/
H A Dpepper_in_process_router.cc62 int routing_id = 0; local
65 routing_id = frame->GetRoutingID();
67 browser_channel_.get(), plugin_to_host_router_.get(), routing_id);
/external/chromium_org/chrome/browser/renderer_host/
H A Dchrome_extension_message_filter.cc131 int routing_id,
143 this, render_process_id_, routing_id, port2_id, info,
168 int routing_id,
179 this, routing_id, port2_id, source_extension_id, native_app_name));
199 int routing_id, int tab_id, const std::string& extension_id,
207 this, render_process_id_, routing_id, port2_id, tab_id,
130 OnOpenChannelToExtension( int routing_id, const ExtensionMsg_ExternalConnectionInfo& info, const std::string& channel_name, bool include_tls_channel_id, int* port_id) argument
167 OnOpenChannelToNativeApp( int routing_id, const std::string& source_extension_id, const std::string& native_app_name, int* port_id) argument
198 OnOpenChannelToTab( int routing_id, int tab_id, const std::string& extension_id, const std::string& channel_name, int* port_id) argument
/external/chromium_org/content/browser/android/in_process/
H A Dsynchronous_compositor_impl.h43 // When used from browser code, use both |process_id| and |routing_id|.
44 static SynchronousCompositorImpl* FromID(int process_id, int routing_id);
47 static SynchronousCompositorImpl* FromRoutingID(int routing_id);
/external/chromium_org/content/browser/media/capture/
H A Dweb_contents_tracker.cc116 << ", routing_id=" << main_render_frame_id;
136 void WebContentsTracker::DidShowFullscreenWidget(int routing_id) { argument
140 void WebContentsTracker::DidDestroyFullscreenWidget(int routing_id) { argument
/external/chromium_org/content/public/renderer/
H A Drender_thread.h61 virtual void AddRoute(int32 routing_id, IPC::Listener* listener) = 0;
62 virtual void RemoveRoute(int32 routing_id) = 0;
/external/chromium_org/content/shell/renderer/
H A Dipc_echo.cc84 int routing_id)
85 : document_(document), sender_(sender), routing_id_(routing_id),
82 IPCEcho(blink::WebDocument document, IPC::Sender* sender, int routing_id) argument
/external/chromium_org/extensions/browser/
H A Dextension_message_filter.h64 void OnExtensionAttachGuest(int routing_id,
91 int routing_id,
/external/chromium_org/ui/views/controls/webview/
H A Dwebview.h124 virtual void DidShowFullscreenWidget(int routing_id) OVERRIDE;
125 virtual void DidDestroyFullscreenWidget(int routing_id) OVERRIDE;
/external/chromium_org/content/renderer/
H A Drender_thread_impl.cc707 RenderViewImpl::FromRoutingID(msg->routing_id());
709 render_view_id = msg->routing_id();
763 void RenderThreadImpl::AddRoute(int32 routing_id, IPC::Listener* listener) { argument
764 ChildThread::GetRouter()->AddRoute(routing_id, listener);
766 pending_render_frame_connects_.find(routing_id);
770 RenderFrameImpl* frame = RenderFrameImpl::FromRoutingID(routing_id);
779 void RenderThreadImpl::RemoveRoute(int32 routing_id) { argument
780 ChildThread::GetRouter()->RemoveRoute(routing_id);
783 void RenderThreadImpl::AddEmbeddedWorkerRoute(int32 routing_id, argument
785 AddRoute(routing_id, listene
792 RemoveEmbeddedWorkerRoute(int32 routing_id) argument
800 RegisterPendingRenderFrameConnect( int routing_id, mojo::ScopedMessagePipeHandle handle) argument
810 int routing_id = MSG_ROUTING_NONE; local
1341 OnCreateNewFrame(int routing_id, int parent_routing_id) argument
1345 OnCreateNewFrameProxy(int routing_id, int parent_routing_id, int render_view_routing_id) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/automation_internal/
H A Dautomation_util.cc140 ax_event_params.routing_id = event.routing_id;
169 int routing_id,
175 process_id, routing_id));
167 DispatchTreeDestroyedEventToAutomation( int process_id, int routing_id, content::BrowserContext* browser_context) argument
/external/chromium_org/chrome/browser/extensions/
H A Dextension_renderer_state.cc191 int render_process_host_id, int routing_id, int tab_id, int window_id) {
193 RenderId render_id(render_process_host_id, routing_id);
198 int render_process_host_id, int routing_id) {
200 RenderId render_id(render_process_host_id, routing_id);
190 SetTabAndWindowId( int render_process_host_id, int routing_id, int tab_id, int window_id) argument
197 ClearTabAndWindowId( int render_process_host_id, int routing_id) argument

Completed in 530 milliseconds

1234567891011>>