HomeSort by relevance Sort by last modified time
    Searched defs:routing_id (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/content/public/browser/
ax_event_notification_details.h 24 int routing_id);
32 int routing_id; member in struct:content::AXEventNotificationDetails
web_contents_observer.cc 63 int WebContentsObserver::routing_id() const { function in class:content::WebContentsObserver
web_contents.h 103 int routing_id; member in struct:content::WebContents::CreateParams
  /external/chromium_org/ppapi/host/
host_message_context.h 22 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/input/
input_handler_wrapper.h 19 int routing_id,
25 int routing_id() const { return routing_id_; } function in class:content::InputHandlerWrapper
input_event_filter.cc 62 void InputEventFilter::DidAddInputHandler(int routing_id,
65 routes_.insert(routing_id);
68 void InputEventFilter::DidRemoveInputHandler(int routing_id) {
70 routes_.erase(routing_id);
73 void InputEventFilter::DidOverscroll(int routing_id,
84 new InputHostMsg_DidOverscroll(routing_id, params)));
87 void InputEventFilter::DidStopFlinging(int routing_id) {
89 scoped_ptr<IPC::Message>(new ViewHostMsg_DidStopFlinging(routing_id)));
122 if (routes_.find(message.routing_id()) == routes_.end())
158 int routing_id = message.routing_id() local
    [all...]
  /external/chromium_org/chrome/browser/android/webapps/
single_tab_mode_tab_helper.cc 22 void AddPairOnIOThread(int32 process_id, int32 routing_id) {
24 RenderWidgetHostID single_tab_pair(process_id, routing_id);
28 void RemovePairOnIOThread(int32 process_id, int32 routing_id) {
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);
    [all...]
  /external/chromium_org/content/child/
request_info.h 69 int routing_id; member in struct:content::RequestInfo
  /external/chromium_org/chrome/browser/extensions/api/tab_capture/
tab_capture_api.cc 107 int routing_id = rvh->GetRoutingID(); local
135 base::StringPrintf("%i:%i", render_process_id, routing_id);
148 routing_id,
tab_capture_apitest.cc 129 int routing_id = rvh->GetRoutingID(); local
131 listener.Reply(base::StringPrintf("%i:%i", render_process_id, routing_id));
  /external/chromium_org/chrome/browser/extensions/api/webstore/
webstore_api.cc 26 ObservedInstallInfo(int routing_id,
31 int routing_id; member in struct:extensions::WebstoreAPI::ObservedInstallInfo
37 int routing_id,
40 : routing_id(routing_id),
61 void WebstoreAPI::OnInlineInstallStart(int routing_id,
67 ObservedInstallInfo(routing_id, extension_id, ipc_sender));
72 ObservedInstallInfo(routing_id, extension_id, ipc_sender));
76 void WebstoreAPI::OnInlineInstallFinished(int routing_id,
78 RemoveListeners(routing_id, extension_id, &download_progress_listeners_)
    [all...]
  /external/chromium_org/content/browser/frame_host/
render_frame_host_impl.h 50 static RenderFrameHostImpl* FromID(int process_id, int routing_id);
77 int routing_id() const { return routing_id_; } function in class:content::RenderFrameHostImpl
180 int routing_id,
  /external/chromium_org/content/browser/renderer_host/
websocket_dispatcher_host.cc 46 WebSocketHost* WebSocketDispatcherHost::CreateWebSocketHost(int routing_id) {
47 return new WebSocketHost(routing_id, this, get_context_callback_.Run());
64 int routing_id = message.routing_id(); local
65 WebSocketHost* host = GetHost(routing_id);
68 DVLOG(1) << "routing_id=" << routing_id << " already in use.";
75 host = websocket_host_factory_.Run(routing_id);
76 hosts_.insert(WebSocketHostTable::value_type(routing_id, host));
79 DVLOG(1) << "Received invalid routing ID " << routing_id
    [all...]
websocket_dispatcher_host_unittest.cc 29 MockWebSocketHost(int routing_id,
32 : WebSocketHost(routing_id, dispatcher, url_request_context) {
70 WebSocketHost* CreateWebSocketHost(int routing_id) {
72 new MockWebSocketHost(routing_id, dispatcher_host_.get(), NULL);
92 int routing_id = 123; local
99 routing_id, socket_url, requested_protocols, origin, render_frame_id);
109 EXPECT_EQ(routing_id, forwarded_message.routing_id());
113 int routing_id = 123; local
116 routing_id, true, WEB_SOCKET_MESSAGE_TYPE_TEXT, data)
125 int routing_id = 123; local
    [all...]
render_view_host_unittest.cc 72 int routing_id = process()->GetNextRoutingID(); local
73 test_rvh()->CreateNewFullscreenWidget(routing_id);
245 EXPECT_NE(test_rvh()->GetRoutingID(), root_rfh->routing_id());
  /external/chromium_org/content/public/renderer/
render_frame_observer.h 79 int routing_id() const { return routing_id_; } function in class:content::RenderFrameObserver
render_view_observer.h 106 int routing_id() const { return routing_id_; } function in class:content::RenderViewObserver
  /external/chromium_org/content/renderer/pepper/
pepper_in_process_router.cc 62 int routing_id = 0; local
65 routing_id = frame->GetRoutingID();
67 browser_channel_.get(), plugin_to_host_router_.get(), routing_id);
  /external/chromium_org/content/renderer/
render_view_impl_params.h 30 int32 routing_id,
49 int32 routing_id; member in struct:content::RenderViewImplParams
  /external/chromium_org/components/nacl/loader/
nacl_ipc_adapter_unittest.cc 76 int routing_id = 0x89898989; local
78 IPC::Message input(routing_id, type, IPC::Message::PRIORITY_NORMAL);
96 EXPECT_EQ(routing_id, output_header->routing);
110 int routing_id = 0x89898989; local
121 header->routing = routing_id;
138 EXPECT_EQ(header->routing, msg->routing_id());
170 EXPECT_EQ(header->routing, msg->routing_id());
226 int routing_id = 0x89898989; local
239 header->routing = routing_id;
  /external/chromium_org/content/browser/download/
mhtml_generation_manager.cc 30 int routing_id() { return routing_id_; } function in class:content::MHTMLGenerationManager::Job
183 job->process_id(), job->routing_id());
  /external/chromium_org/content/renderer/screen_orientation/
screen_orientation_dispatcher_unittest.cc 108 int routing_id() const { function in class:content::ScreenOrientationDispatcherTest
109 // We return a fake routing_id() in the context of this test.
165 ScreenOrientationMsg_LockError(routing_id(), request_id, *it));
196 OnMessageReceived(ScreenOrientationMsg_LockSuccess(routing_id(),
219 routing_id(),
237 routing_id(),
265 routing_id(),
  /external/chromium_org/ipc/
ipc_message_utils.cc 242 : routing_id(0),
690 WriteParam(m, p.routing_id);
705 ReadParam(m, iter, &r->routing_id) &&
736 m->WriteUInt32(static_cast<uint32>(p.routing_id()));
744 uint32 routing_id, type, flags; local
745 if (!m->ReadUInt32(iter, &routing_id) ||
755 r->SetHeaderValues(static_cast<int32>(routing_id), type, flags);
  /external/chromium_org/chrome/browser/plugins/
plugin_observer.cc 196 int routing_id,
201 routing_id_(routing_id) {
278 int routing_id = render_frame_host->GetRoutingID(); local
279 render_frame_host->Send(new ChromeViewMsg_NPAPINotSupported(routing_id));
  /external/chromium_org/chrome/browser/printing/
printing_message_filter.cc 326 reply_msg->routing_id(), params,
372 reply_msg->routing_id(), settings_params,
385 int routing_id = reply_msg->routing_id(); local
406 routing_id, file_descriptor));

Completed in 1034 milliseconds

1 2