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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/android/
external_protocol_dialog_android.cc 11 const GURL& url, int render_process_host_id, int routing_id) {
  /external/chromium_org/content/browser/android/in_process/
synchronous_input_event_filter.h 31 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;
synchronous_input_event_filter.cc 24 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) {
63 SynchronousCompositorImpl::FromRoutingID(routing_id);
69 int routing_id,
74 SynchronousCompositorImpl::FromRoutingID(routing_id);
79 void SynchronousInputEventFilter::DidStopFlinging(int routing_id) {
83 SynchronousCompositorImpl::FromRoutingID(routing_id);
    [all...]
  /external/chromium_org/content/browser/renderer_host/
websocket_dispatcher_host.cc 47 WebSocketHost* WebSocketDispatcherHost::CreateWebSocketHost(int routing_id) {
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
    [all...]
websocket_dispatcher_host.h 35 // 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...]
render_view_host_factory.cc 20 int routing_id,
26 routing_id, main_frame_routing_id,
29 return new RenderViewHostImpl(instance, delegate, widget_delegate, routing_id,
websocket_dispatcher_host_unittest.cc 33 MockWebSocketHost(int routing_id,
69 void GoAway(int routing_id) {
70 gone_hosts_.push_back(routing_id);
92 WebSocketHost* CreateWebSocketHost(int routing_id) {
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_url, requested_protocols, origin, render_frame_id)
148 int routing_id = 123; local
160 int routing_id = 123; local
    [all...]
  /external/chromium_org/content/renderer/input/
input_handler_manager_client.h 37 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;
input_handler_manager.cc 52 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) {
98 DCHECK(input_handlers_.contains(routing_id));
    [all...]
input_handler_manager.h 45 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/content/public/browser/
ax_event_notification_details.cc 15 int routing_id)
21 routing_id(routing_id) {
ax_event_notification_details.h 25 int routing_id);
34 int routing_id; member in struct:content::AXEventNotificationDetails
  /external/chromium_org/content/common/
message_router.cc 29 bool MessageRouter::AddRoute(int32 routing_id, IPC::Listener* listener) {
30 if (routes_.Lookup(routing_id)) {
34 routes_.AddWithID(listener, routing_id);
38 void MessageRouter::RemoveRoute(int32 routing_id) {
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/ppapi/host/
host_message_context.cc 11 : 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);
    [all...]
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/devtools/
devtools_agent_filter.h 39 void AddEmbeddedWorkerRouteOnMainThread(int32 routing_id);
40 void RemoveEmbeddedWorkerRouteOnMainThread(int32 routing_id);
49 void AddEmbeddedWorkerRoute(int32 routing_id);
50 void RemoveEmbeddedWorkerRoute(int32 routing_id);
devtools_agent_filter.cc 24 MessageImpl(const std::string& message, int routing_id)
26 routing_id_(routing_id) {
52 current_routing_id_ = message.routing_id();
82 void DevToolsAgentFilter::AddEmbeddedWorkerRouteOnMainThread(int32 routing_id) {
86 &DevToolsAgentFilter::AddEmbeddedWorkerRoute, this, routing_id));
90 int32 routing_id) {
94 &DevToolsAgentFilter::RemoveEmbeddedWorkerRoute, this, routing_id));
97 void DevToolsAgentFilter::AddEmbeddedWorkerRoute(int32 routing_id) {
98 embedded_worker_routes_.insert(routing_id);
101 void DevToolsAgentFilter::RemoveEmbeddedWorkerRoute(int32 routing_id) {
    [all...]
  /external/chromium_org/components/autofill/content/renderer/
renderer_save_password_progress_logger.cc 14 int routing_id)
15 : sender_(sender), routing_id_(routing_id) {
  /external/chromium_org/content/renderer/gpu/
delegated_compositor_output_surface.cc 11 int32 routing_id,
15 : CompositorOutputSurface(routing_id,
delegated_compositor_output_surface.h 17 int32 routing_id,
  /external/chromium_org/content/browser/frame_host/
render_frame_host_factory.cc 22 int routing_id,
29 routing_id,
33 render_view_host, delegate, frame_tree, frame_tree_node, routing_id,
  /external/chromium_org/chrome/browser/extensions/api/webstore/
webstore_api.cc 25 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,
66 ObservedInstallInfo(routing_id, extension_id, ipc_sender));
71 ObservedInstallInfo(routing_id, extension_id, ipc_sender));
75 void WebstoreAPI::OnInlineInstallFinished(int routing_id,
77 RemoveListeners(routing_id, extension_id, &download_progress_listeners_)
    [all...]
  /external/chromium_org/content/shell/browser/
ipc_echo_message_filter.cc 28 void IPCEchoMessageFilter::OnEchoPing(int routing_id, int id,
30 Send(new ShellViewMsg_EchoPong(routing_id, id, body));
  /external/chromium_org/content/test/
test_render_frame_host_factory.cc 28 int routing_id,
32 render_view_host, delegate, frame_tree, frame_tree_node, routing_id,
  /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...]

Completed in 492 milliseconds

1 2 3 4 5 6 7 8 91011>>