Searched refs:route_id (Results 1 - 25 of 204) sorted by relevance

123456789

/external/chromium_org/content/browser/loader/
H A Dglobal_routing_id.h12 GlobalRoutingID() : child_id(-1), route_id(-1) {
15 GlobalRoutingID(int child_id, int route_id) argument
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;
H A Dresource_scheduler.h40 // A client is uniquely identified by its child_id and route_id.
61 int child_id, int route_id, net::URLRequest* url_request);
66 void OnClientCreated(int child_id, int route_id);
69 void OnClientDeleted(int child_id, int route_id);
74 void OnNavigate(int child_id, int route_id);
78 void OnWillInsertBody(int child_id, int route_id);
117 // Returns the client ID for the given |child_id| and |route_id| combo.
118 ClientId MakeClientId(int child_id, int route_id);
H A Drender_view_host_tracker.cc36 int route_id = rvh->GetRoutingID(); local
41 child_id, route_id));
63 int route_id = rvh->GetRoutingID(); local
69 child_id, route_id));
/external/chromium_org/content/public/browser/
H A Dworker_service_observer.h20 int route_id) {}
21 virtual void WorkerDestroyed(int process_id, int route_id) {} argument
17 WorkerCreated(const GURL& url, const string16& name, int process_id, int route_id) argument
H A Dresource_dispatcher_host.h55 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;
H A Dworker_service.h30 virtual bool TerminateWorker(int process_id, int route_id) = 0;
36 int route_id; member in struct:content::WorkerService::WorkerInfo
/external/chromium_org/content/renderer/java/
H A Djava_bridge_channel.cc41 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/worker_host/
H A Dworker_message_filter.cc81 int* route_id) {
82 *route_id = params.route_id != MSG_ROUTING_NONE ?
83 params.route_id : next_routing_id_.Run();
85 params, *route_id, this, resource_context_, partition_);
91 int* route_id,
93 *route_id = next_routing_id_.Run();
96 params, *route_id, this, resource_context_, partition_, exists,
108 void WorkerMessageFilter::OnCreateMessagePort(int *route_id, argument
110 *route_id
79 OnCreateWorker( const ViewHostMsg_CreateWorker_Params& params, int* route_id) argument
88 OnLookupSharedWorker( const ViewHostMsg_CreateWorker_Params& params, bool* exists, int* route_id, bool* url_error) argument
[all...]
H A Dworker_message_filter.h42 int* route_id);
45 int* route_id,
49 void OnCreateMessagePort(int* route_id, int* message_port_id);
/external/chromium/chrome/browser/tab_contents/
H A Drender_view_host_delegate_helper.h41 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/chrome/browser/prerender/
H A Dprerender_tracker.h42 bool TryUse(int child_id, int route_id);
53 bool TryCancel(int child_id, int route_id, FinalStatus final_status);
57 bool TryCancelOnIOThread(int child_id, int route_id,
63 bool GetFinalStatus(int child_id, int route_id,
69 bool IsPrerenderingOnIOThread(int child_id, int route_id) const;
102 bool SetFinalStatus(int child_id, int route_id,
H A Dprerender_tracker.cc58 bool PrerenderTracker::TryUse(int child_id, int route_id) { argument
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, argument
91 ChildRouteIdPair child_route_id_pair(child_id, route_id);
105 int child_id, route_id; local
63 TryCancel( int child_id, int route_id, FinalStatus final_status) argument
76 TryCancelOnIOThread( int child_id, int route_id, FinalStatus final_status) argument
129 int child_id, route_id; local
146 SetFinalStatus(int child_id, int route_id, FinalStatus desired_final_status, FinalStatus* actual_final_status) argument
[all...]
/external/chromium_org/content/child/npapi/
H A Dnp_channel_base.cc143 NPObjectBase* NPChannelBase::GetNPObjectListenerForRoute(int route_id) { argument
144 ListenerMap::iterator iter = npobject_listeners_.find(route_id);
146 DLOG(WARNING) << "Invalid route id passed in:" << route_id;
233 void NPChannelBase::AddRoute(int route_id, argument
237 npobject_listeners_[route_id] = npobject;
242 router_.AddRoute(route_id, listener);
245 void NPChannelBase::RemoveRoute(int route_id) { argument
246 router_.RemoveRoute(route_id);
248 ListenerMap::iterator iter = npobject_listeners_.find(route_id);
312 void NPChannelBase::AddMappingForNPObjectProxy(int route_id, argument
317 RemoveMappingForNPObjectProxy(int route_id) argument
321 AddMappingForNPObjectStub(int route_id, NPObject* object) argument
327 RemoveMappingForNPObjectStub(int route_id, NPObject* object) argument
333 AddMappingForNPObjectOwner(int route_id, struct _NPP* owner) argument
345 RemoveMappingForNPObjectOwner(int route_id) argument
351 GetExistingNPObjectProxy(int route_id) argument
361 GetExistingNPObjectOwner(int route_id) argument
[all...]
H A Dnp_channel_base.h68 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/
H A Dplugin_channel_host.cc88 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, argument
97 NPChannelBase::AddRoute(route_id, listener, npobject);
100 proxies_[route_id] = listener;
103 void PluginChannelHost::RemoveRoute(int route_id) { argument
114 proxies_.erase(route_id);
115 NPChannelBase::RemoveRoute(route_id);
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_helper.cc184 void RenderWidgetHelper::ResumeRequestsForView(int route_id) { argument
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_i
248 CreateNewWindow( const ViewHostMsg_CreateWindow_Params& params, bool no_javascript_access, base::ProcessHandle render_process, int* route_id, int* main_frame_route_id, int* surface_id, SessionStorageNamespace* session_storage_namespace) argument
285 OnCreateWindowOnUI( const ViewHostMsg_CreateWindow_Params& params, int route_id, int main_frame_route_id, SessionStorageNamespace* session_storage_namespace) argument
297 OnResumeRequestsForView(int route_id) argument
302 CreateNewWidget(int opener_id, WebKit::WebPopupType popup_type, int* route_id, int* surface_id) argument
316 CreateNewFullscreenWidget(int opener_id, int* route_id, int* surface_id) argument
329 OnCreateWidgetOnUI( int opener_id, int route_id, WebKit::WebPopupType popup_type) argument
337 OnCreateFullscreenWidgetOnUI(int opener_id, int route_id) argument
[all...]
H A Drender_widget_helper.h135 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);
/external/chromium_org/android_webview/browser/renderer_host/
H A Daw_resource_dispatcher_host_delegate.h38 int route_id,
45 int route_id,
61 int route_id) OVERRIDE;
72 int route_id,
82 void OnIoThreadClientReadyInternal(int child_id, int route_id);
84 int route_id,
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_message_filter_mac.h40 void OnCheckSpelling(const 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);
H A Dspellcheck_message_filter_mac.cc38 int route_id,
93 int route_id,
100 route_id_ = route_id;
253 int route_id,
255 *correct = spellcheck_mac::CheckSpelling(word, ToDocumentTag(route_id));
274 int route_id,
291 text, route_id, identifier, ToDocumentTag(route_id), markers);
294 int SpellCheckMessageFilterMac::ToDocumentTag(int route_id) { argument
295 if (!tag_map_.count(route_id))
91 RequestCheck( const string16& text, int route_id, int identifier, int document_tag, const std::vector<SpellCheckMarker>& markers) argument
252 OnCheckSpelling(const string16& word, int route_id, bool* correct) argument
273 OnRequestTextCheck( int route_id, int identifier, const string16& text, std::vector<SpellCheckMarker> markers) argument
303 RetireDocumentTag(int route_id) argument
[all...]
/external/chromium_org/chrome/browser/
H A Dvalidation_message_message_filter.cc63 int route_id, const gfx::Rect& anchor_in_root_view,
66 RenderWidgetHost::FromID(renderer_id_, route_id);
76 int route_id, const gfx::Rect& anchor_in_root_view) {
80 RenderWidgetHost::FromID(renderer_id_, route_id);
62 OnShowValidationMessage( int route_id, const gfx::Rect& anchor_in_root_view, const string16& main_text, const string16& sub_text) argument
75 OnMoveValidationMessage( int route_id, const gfx::Rect& anchor_in_root_view) argument
/external/chromium_org/content/common/gpu/client/
H A Dgpu_channel_host.cc128 int32 route_id = factory_->CreateViewCommandBuffer(surface_id, init_params); local
129 if (route_id == MSG_ROUTING_NONE)
133 new CommandBufferProxyImpl(this, route_id);
134 AddRoute(route_id, command_buffer->AsWeakPtr());
137 proxies_[route_id] = command_buffer;
157 int32 route_id; local
160 &route_id))) {
164 if (route_id == MSG_ROUTING_NONE)
168 new CommandBufferProxyImpl(this, route_id);
169 AddRoute(route_id, command_buffe
191 int route_id = command_buffer->GetRouteID(); local
208 AddRoute( int route_id, base::WeakPtr<IPC::Listener> listener) argument
219 RemoveRoute(int route_id) argument
290 AddRoute( int route_id, base::WeakPtr<IPC::Listener> listener, scoped_refptr<MessageLoopProxy> loop) argument
301 RemoveRoute(int route_id) argument
[all...]
/external/chromium_org/content/test/
H A Dtest_web_contents.h109 int route_id,
113 virtual void CreateNewWidget(int route_id,
115 virtual void CreateNewFullscreenWidget(int route_id) OVERRIDE;
116 virtual void ShowCreatedWindow(int route_id,
120 virtual void ShowCreatedWidget(int route_id,
122 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE;
/external/chromium/chrome/browser/notifications/
H A Dnotification_object_proxy.cc13 NotificationObjectProxy::NotificationObjectProxy(int process_id, int route_id, argument
16 route_id_(route_id),
/external/chromium_org/chrome/browser/renderer_host/
H A Dchrome_resource_dispatcher_host_delegate.cc206 int route_id,
227 if (prerender_tracker_->IsPrerenderingOnIOThread(child_id, route_id)) {
230 child_id, route_id, prerender::FINAL_STATUS_INVALID_HTTP_METHOD);
236 child_id, route_id, prerender::FINAL_STATUS_UNSUPPORTED_SCHEME);
250 int route_id,
259 child_id, route_id);
276 child_id, route_id, request, appcache_service));
281 child_id, route_id, request));
309 route_id,
316 request, resource_type, child_id, route_id);
204 ShouldBeginRequest( int child_id, int route_id, const std::string& method, const GURL& url, ResourceType::Type resource_type, content::ResourceContext* resource_context) argument
244 RequestBeginning( net::URLRequest* request, content::ResourceContext* resource_context, appcache::AppCacheService* appcache_service, ResourceType::Type resource_type, int child_id, int route_id, bool is_continuation_of_transferred_request, ScopedVector<content::ResourceThrottle>* throttles) argument
320 DownloadStarting( net::URLRequest* request, content::ResourceContext* resource_context, int child_id, int route_id, int request_id, bool is_content_initiated, bool must_download, ScopedVector<content::ResourceThrottle>* throttles) argument
367 int child_id, route_id; local
388 int child_id, route_id; local
409 HandleExternalProtocol( const GURL& url, int child_id, int route_id) argument
432 AppendStandardResourceThrottles( net::URLRequest* request, content::ResourceContext* resource_context, int child_id, int route_id, ResourceType::Type resource_type, ScopedVector<content::ResourceThrottle>* throttles) argument
632 int child_id, route_id; local
[all...]

Completed in 790 milliseconds

123456789