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

1 2 3 4 5 6 7 8

  /external/chromium_org/content/browser/loader/
global_routing_id.h 12 GlobalRoutingID() : child_id(-1), route_id(-1) {
15 GlobalRoutingID(int child_id, int route_id)
17 route_id(route_id) {
24 int route_id; member in struct:content::GlobalRoutingID
28 return route_id < other.route_id;
33 route_id == other.route_id;
resource_scheduler.h 41 // A client is uniquely identified by its child_id and route_id.
62 int child_id, int route_id, net::URLRequest* url_request);
67 void OnClientCreated(int child_id, int route_id);
70 void OnClientDeleted(int child_id, int route_id);
75 void OnNavigate(int child_id, int route_id);
79 void OnWillInsertBody(int child_id, int route_id);
85 void OnReceivedSpdyProxiedHttpResponse(int child_id, int route_id);
114 // Returns the client ID for the given |child_id| and |route_id| combo.
115 ClientId MakeClientId(int child_id, int route_id);
resource_dispatcher_host_impl.h 86 int route_id,
92 virtual void BlockRequestsForRoute(int child_id, int route_id) OVERRIDE;
94 int child_id, int route_id) OVERRIDE;
120 int route_id,
162 void OnRenderViewHostCreated(int child_id, int route_id);
165 void OnRenderViewHostDeleted(int child_id, int route_id);
178 void CancelBlockedRequestsForRoute(int child_id, int route_id);
318 // acts like CancelRequestsForProcess when route_id is -1.
319 void CancelRequestsForRoute(int child_id, int route_id);
341 int route_id,
    [all...]
  /external/chromium_org/content/public/browser/
worker_service_observer.h 20 int route_id) {}
21 virtual void WorkerDestroyed(int process_id, int route_id) {}
resource_dispatcher_host.h 56 int route_id,
66 // |route_id| to be blocked (not being started) until
68 virtual void BlockRequestsForRoute(int child_id, int route_id) = 0;
71 virtual void ResumeBlockedRequestsForRoute(int child_id, int route_id) = 0;
worker_service.h 33 virtual bool TerminateWorker(int process_id, int route_id) = 0;
39 int route_id; member in struct:content::WorkerService::WorkerInfo
resource_dispatcher_host_delegate.cc 13 int route_id,
27 int route_id,
35 int route_id,
51 int route_id) {
  /external/chromium_org/chrome/browser/signin/
signin_header_helper.h 60 int route_id; member in struct:signin::ManageAccountsParams
74 int route_id);
83 int route_id);
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter_mac.h 39 void OnCheckSpelling(const base::string16& word, int route_id, bool* correct);
44 void OnRequestTextCheck(int route_id,
49 int ToDocumentTag(int route_id);
50 void RetireDocumentTag(int route_id);
spellcheck_message_filter.h 38 void OnCallSpellingService(int route_id,
46 int route_id,
61 int route_id,
spellcheck_message_filter_mac.cc 40 int route_id,
94 int route_id,
101 route_id_ = route_id;
252 int route_id,
254 *correct = spellcheck_mac::CheckSpelling(word, ToDocumentTag(route_id));
273 int route_id,
290 text, route_id, identifier, ToDocumentTag(route_id), markers);
293 int SpellCheckMessageFilterMac::ToDocumentTag(int route_id) {
294 if (!tag_map_.count(route_id))
    [all...]
  /external/chromium_org/content/renderer/java/
java_bridge_channel.cc 41 int route_id = MSG_ROUTING_NONE; local
42 Send(new JavaBridgeMsg_GenerateRouteID(&route_id));
45 DCHECK_NE(MSG_ROUTING_NONE, route_id);
46 return route_id;
  /external/chromium_org/content/browser/renderer_host/
render_widget_helper.h 137 void ResumeRequestsForView(int route_id);
148 int* route_id,
154 int* route_id,
156 void CreateNewFullscreenWidget(int opener_id, int* route_id, int* surface_id);
203 int route_id,
208 void OnResumeRequestsForView(int route_id);
212 int route_id,
216 void OnCreateFullscreenWidgetOnUI(int opener_id, int route_id);
render_widget_helper.cc 184 void RenderWidgetHelper::ResumeRequestsForView(int route_id) {
185 // We only need to resume blocked requests if we used a valid route_id.
187 if (route_id != MSG_ROUTING_NONE) {
191 this, route_id));
252 int* route_id,
262 *route_id = MSG_ROUTING_NONE;
266 *route_id = GetNextRoutingID();
269 render_process_id_, *route_id);
273 render_process_id_, *route_id);
281 this, params, *route_id, *main_frame_route_id
    [all...]
render_view_host_delegate.h 219 // should be created associated with the given |route_id| in process
233 int route_id,
239 // widget should be created associated with the given |route_id| in the
245 int route_id,
249 virtual void CreateNewFullscreenWidget(int render_process_id, int route_id) {}
252 // The window is identified by the route_id passed to CreateNewWindow.
256 virtual void ShowCreatedWindow(int route_id,
262 // The widget is identified by the route_id passed to CreateNewWidget.
263 virtual void ShowCreatedWidget(int route_id,
267 virtual void ShowCreatedFullscreenWidget(int route_id) {}
    [all...]
  /external/chromium_org/content/child/npapi/
np_channel_base.cc 158 NPObjectBase* NPChannelBase::GetNPObjectListenerForRoute(int route_id) {
159 ListenerMap::iterator iter = npobject_listeners_.find(route_id);
161 DLOG(WARNING) << "Invalid route id passed in:" << route_id;
248 void NPChannelBase::AddRoute(int route_id,
252 npobject_listeners_[route_id] = npobject;
257 router_.AddRoute(route_id, listener);
260 void NPChannelBase::RemoveRoute(int route_id) {
261 router_.RemoveRoute(route_id);
263 ListenerMap::iterator iter = npobject_listeners_.find(route_id);
327 void NPChannelBase::AddMappingForNPObjectProxy(int route_id,
    [all...]
np_channel_base.h 68 void AddRoute(int route_id, IPC::Listener* listener, NPObjectBase* npobject);
69 void RemoveRoute(int route_id);
71 void AddMappingForNPObjectProxy(int route_id, NPObject* object);
72 void RemoveMappingForNPObjectProxy(int route_id);
74 void AddMappingForNPObjectStub(int route_id, NPObject* object);
75 void RemoveMappingForNPObjectStub(int route_id, NPObject* object);
77 void AddMappingForNPObjectOwner(int route_id, struct _NPP* owner);
79 void RemoveMappingForNPObjectOwner(int route_id);
81 NPObject* GetExistingNPObjectProxy(int route_id);
83 struct _NPP* GetExistingNPObjectOwner(int route_id);
    [all...]
  /external/chromium_org/content/renderer/npapi/
plugin_channel_host.cc 88 int route_id = MSG_ROUTING_NONE; local
89 Send(new PluginMsg_GenerateRouteID(&route_id));
91 return route_id;
94 void PluginChannelHost::AddRoute(int route_id,
97 NPChannelBase::AddRoute(route_id, listener, npobject);
100 proxies_[route_id] = listener;
103 void PluginChannelHost::RemoveRoute(int route_id) {
114 proxies_.erase(route_id);
115 NPChannelBase::RemoveRoute(route_id);
  /external/chromium_org/content/browser/shared_worker/
shared_worker_host.h 75 void AddFilter(SharedWorkerMessageFilter* filter, int route_id);
93 FilterInfo(SharedWorkerMessageFilter* filter, int route_id)
94 : filter_(filter), route_id_(route_id), message_port_id_(0) {}
96 int route_id() const { return route_id_; } function in class:content::SharedWorkerHost::FilterInfo
117 bool HasFilter(SharedWorkerMessageFilter* filter, int route_id) const;
119 int route_id,
  /external/chromium_org/content/test/
test_web_contents.h 104 int route_id,
109 int route_id,
112 int route_id) OVERRIDE;
113 virtual void ShowCreatedWindow(int route_id,
117 virtual void ShowCreatedWidget(int route_id,
119 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/android/infobars/
auto_login_prompter.h 37 int route_id);
51 int route_id);
auto_login_prompter.cc 50 int route_id) {
63 params, request->url(), child_id, route_id));
71 int route_id) {
73 WebContents* web_contents = tab_util::GetWebContentsByID(child_id, route_id);
  /external/chromium_org/content/common/gpu/client/
gpu_channel_host.cc 144 int32 route_id = GenerateRouteID(); local
146 surface_id, init_params, route_id);
169 new CommandBufferProxyImpl(this, route_id);
170 AddRoute(route_id, command_buffer->AsWeakPtr());
173 proxies_[route_id] = command_buffer;
191 int32 route_id = GenerateRouteID(); local
195 route_id,
208 new CommandBufferProxyImpl(this, route_id);
209 AddRoute(route_id, command_buffer->AsWeakPtr());
212 proxies_[route_id] = command_buffer
238 int route_id = command_buffer->GetRouteID(); local
    [all...]
  /external/chromium_org/content/browser/worker_host/
worker_message_filter.cc 58 int* route_id) {
60 *route_id = GetNextRoutingID();
62 params, *route_id, this, resource_context_, partition_, &url_error);
64 *route_id = MSG_ROUTING_NONE;
  /external/chromium_org/content/renderer/
shared_worker_repository.cc 30 int route_id = MSG_ROUTING_NONE; local
38 Send(new ViewHostMsg_CreateWorker(params, &route_id));
39 if (route_id == MSG_ROUTING_NONE)
44 route_id,

Completed in 837 milliseconds

1 2 3 4 5 6 7 8