/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); 128 // Returns the client ID for the given |child_id| and |route_id| combo. 129 ClientId MakeClientId(int child_id, int route_id);
|
/external/chromium_org/content/public/browser/ |
worker_service_observer.h | 20 int route_id) {} 21 virtual void WorkerDestroyed(int process_id, int route_id) {}
|
worker_service.h | 30 virtual bool TerminateWorker(int process_id, int route_id) = 0; 36 int route_id; member in struct:content::WorkerService::WorkerInfo
|
resource_dispatcher_host.h | 55 int route_id, 65 // |route_id| to be blocked (not being started) until 67 virtual void BlockRequestsForRoute(int child_id, int route_id) = 0; 70 virtual void ResumeBlockedRequestsForRoute(int child_id, int route_id) = 0;
|
/external/chromium_org/chrome/browser/signin/ |
signin_header_helper.h | 29 int route_id); 38 int route_id);
|
signin_header_helper.cc | 28 void ShowAvatarBubbleUIThread(int child_id, int route_id) { 33 tab_util::GetWebContentsByID(child_id, route_id); 62 int route_id) { 89 child_id, route_id, &webview_info); 106 int route_id) { 115 base::Bind(ShowAvatarBubbleUIThread, child_id, route_id));
|
/external/chromium_org/content/browser/worker_host/ |
worker_message_filter.cc | 60 int* route_id) { 61 *route_id = params.route_id != MSG_ROUTING_NONE ? 62 params.route_id : GetNextRoutingID(); 64 params, *route_id, this, resource_context_, partition_); 70 int* route_id, 72 *route_id = GetNextRoutingID(); 75 params, *route_id, this, resource_context_, partition_, exists,
|
worker_message_filter.h | 43 int* route_id); 46 int* route_id, 50 void OnCreateMessagePort(int* route_id, int* message_port_id);
|
/external/chromium_org/chrome/browser/prerender/ |
prerender_resource_throttle.cc | 32 int route_id = info->GetRouteID(); local 36 if (!tracker_->IsPrerenderingOnIOThread(child_id, route_id)) 43 child_id, route_id, prerender::FINAL_STATUS_INVALID_HTTP_METHOD)) { 50 child_id, route_id, prerender::FINAL_STATUS_UNSUPPORTED_SCHEME)) { 64 int route_id = info->GetRouteID(); local 68 if (!tracker_->IsPrerenderingOnIOThread(child_id, route_id)) 74 child_id, route_id, prerender::FINAL_STATUS_UNSUPPORTED_SCHEME)) { 97 if (tracker_->TryCancelOnIOThread(child_id, route_id, 111 tracker_->AddResourceThrottleOnIOThread(child_id, route_id,
|
prerender_tracker.h | 47 bool TryUse(int child_id, int route_id); 58 bool TryCancel(int child_id, int route_id, FinalStatus final_status); 62 bool TryCancelOnIOThread(int child_id, int route_id, 68 bool GetFinalStatus(int child_id, int route_id, 74 bool IsPrerenderingOnIOThread(int child_id, int route_id) const; 79 bool IsPendingSwapRequestOnIOThread(int child_id, int route_id, 86 int child_id, int route_id, 93 int child_id, int route_id, const GURL& url, 146 bool SetFinalStatus(int child_id, int route_id,
|
prerender_tracker.cc | 58 bool PrerenderTracker::TryUse(int child_id, int route_id) { 60 return SetFinalStatus(child_id, route_id, FINAL_STATUS_USED, NULL); 65 int route_id, 71 SetFinalStatus(child_id, route_id, final_status, &actual_final_status); 78 int route_id, 84 if (!IsPrerenderingOnIOThread(child_id, route_id)) 86 return TryCancel(child_id, route_id, final_status); 89 bool PrerenderTracker::GetFinalStatus(int child_id, int route_id, 91 ChildRouteIdPair child_route_id_pair(child_id, route_id); 105 int child_id, route_id; local 129 int child_id, route_id; local [all...] |
prerender_pending_swap_throttle.cc | 35 int route_id = info->GetRouteID(); local 38 if (!tracker_->IsPendingSwapRequestOnIOThread(child_id, route_id, 45 tracker_->AddPendingSwapThrottleOnIOThread(child_id, route_id,
|
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_message_filter_mac.h | 40 void OnCheckSpelling(const base::string16& word, int route_id, bool* correct); 45 void OnRequestTextCheck(int route_id, 50 int ToDocumentTag(int route_id); 51 void RetireDocumentTag(int route_id);
|
spellcheck_message_filter.h | 39 void OnCallSpellingService(int route_id, 47 int route_id, 62 int route_id,
|
/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 | 135 void ResumeRequestsForView(int route_id); 151 int* route_id, 157 int* route_id, 159 void CreateNewFullscreenWidget(int opener_id, int* route_id, int* surface_id); 200 int route_id, 205 void OnResumeRequestsForView(int route_id); 209 int route_id, 213 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...] |
/external/chromium/chrome/browser/tab_contents/ |
render_view_host_delegate_helper.h | 41 int route_id, 51 virtual RenderWidgetHostView* CreateNewWidget(int route_id, 56 int route_id, RenderProcessHost* process); 60 virtual RenderWidgetHostView* GetCreatedWidget(int route_id); 62 // Finds the new RenderViewHost/Delegate by route_id, initializes it for 67 virtual TabContents* GetCreatedWindow(int route_id); 74 int route_id,
|
/external/chromium_org/content/child/npapi/ |
np_channel_base.cc | 157 NPObjectBase* NPChannelBase::GetNPObjectListenerForRoute(int route_id) { 158 ListenerMap::iterator iter = npobject_listeners_.find(route_id); 160 DLOG(WARNING) << "Invalid route id passed in:" << route_id; 247 void NPChannelBase::AddRoute(int route_id, 251 npobject_listeners_[route_id] = npobject; 256 router_.AddRoute(route_id, listener); 259 void NPChannelBase::RemoveRoute(int route_id) { 260 router_.RemoveRoute(route_id); 262 ListenerMap::iterator iter = npobject_listeners_.find(route_id); 326 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/android_webview/browser/renderer_host/ |
aw_resource_dispatcher_host_delegate.h | 38 int route_id, 44 int route_id, 60 int route_id) OVERRIDE; 77 int route_id, 87 void OnIoThreadClientReadyInternal(int child_id, int route_id); 89 int route_id,
|
/external/chromium_org/content/test/ |
test_web_contents.h | 110 int route_id, 115 int route_id, 118 int route_id) OVERRIDE; 119 virtual void ShowCreatedWindow(int route_id, 123 virtual void ShowCreatedWidget(int route_id, 125 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE;
|
/external/chromium_org/chrome/browser/ui/ |
auto_login_prompter.h | 37 int route_id); 51 int route_id);
|