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

1234567

/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.h42 // A client is uniquely identified by its child_id and route_id.
103 ClientThrottleState GetClientStateForTesting(int child_id, int route_id);
109 int child_id, int route_id, net::URLRequest* url_request);
114 void OnClientCreated(int child_id, int route_id, bool is_visible);
117 void OnClientDeleted(int child_id, int route_id);
120 void OnLoadingStateChanged(int child_id, int route_id, bool is_loaded);
123 void OnVisibilityChanged(int child_id, int route_id, bool is_visible);
128 void OnNavigate(int child_id, int route_id);
132 void OnWillInsertBody(int child_id, int route_id);
138 void OnReceivedSpdyProxiedHttpResponse(int child_id, int route_id);
[all...]
H A Dresource_dispatcher_host_impl.h88 int route_id,
94 virtual void BlockRequestsForRoute(int child_id, int route_id) OVERRIDE;
96 int child_id, int route_id) OVERRIDE;
125 int route_id,
167 void OnRenderViewHostCreated(int child_id, int route_id, bool is_visible);
170 void OnRenderViewHostDeleted(int child_id, int route_id);
174 int route_id,
178 void OnRenderViewHostWasHidden(int child_id, int route_id);
181 void OnRenderViewHostWasShown(int child_id, int route_id);
194 void CancelBlockedRequestsForRoute(int child_id, int route_id);
[all...]
/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 base::string16& name, int process_id, int route_id) argument
H A Dresource_dispatcher_host.h56 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;
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/browser/renderer_host/
H A Drender_widget_helper.cc101 void RenderWidgetHelper::ResumeRequestsForView(int route_id) { argument
102 // We only need to resume blocked requests if we used a valid route_id.
104 if (route_id != MSG_ROUTING_NONE) {
108 this, route_id));
126 int* route_id,
136 *route_id = MSG_ROUTING_NONE;
140 *route_id = GetNextRoutingID();
143 render_process_id_, *route_id);
147 render_process_id_, *route_id);
155 this, params, *route_id, *main_frame_route_i
122 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
159 OnCreateWindowOnUI( const ViewHostMsg_CreateWindow_Params& params, int route_id, int main_frame_route_id, SessionStorageNamespace* session_storage_namespace) argument
171 OnResumeRequestsForView(int route_id) argument
176 CreateNewWidget(int opener_id, blink::WebPopupType popup_type, int* route_id, int* surface_id) argument
190 CreateNewFullscreenWidget(int opener_id, int* route_id, int* surface_id) argument
203 OnCreateWidgetOnUI( int opener_id, int route_id, blink::WebPopupType popup_type) argument
211 OnCreateFullscreenWidgetOnUI(int opener_id, int route_id) argument
[all...]
H A Drender_widget_helper.h102 void ResumeRequestsForView(int route_id);
110 int* route_id,
116 int* route_id,
118 void CreateNewFullscreenWidget(int opener_id, int* route_id, int* surface_id);
144 int route_id,
149 void OnResumeRequestsForView(int route_id);
153 int route_id,
157 void OnCreateFullscreenWidgetOnUI(int opener_id, int route_id);
H A Dgpu_message_filter.h45 int route_id,
47 void EndFrameSubscription(int route_id);
63 int32 route_id,
H A Dgpu_message_filter.cc43 : route_id(in_route_id),
49 int route_id; member in struct:content::GpuMessageFilter::FrameSubscription
83 int route_id,
87 new FrameSubscription(route_id, subscriber.Pass()));
91 void GpuMessageFilter::EndFrameSubscription(int route_id) { argument
97 if ((*it)->route_id != route_id)
146 int32 route_id,
186 route_id,
232 render_process_id_, subscription->route_id);
82 BeginFrameSubscription( int route_id, scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) argument
143 OnCreateViewCommandBuffer( int32 surface_id, const GPUCreateCommandBufferConfig& init_params, int32 route_id, IPC::Message* reply_ptr) argument
[all...]
/external/chromium_org/content/child/npapi/
H A Dnp_channel_base.cc158 NPObjectBase* NPChannelBase::GetNPObjectListenerForRoute(int route_id) { argument
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, argument
252 npobject_listeners_[route_id] = npobject;
257 router_.AddRoute(route_id, listener);
260 void NPChannelBase::RemoveRoute(int route_id) { argument
261 router_.RemoveRoute(route_id);
263 ListenerMap::iterator iter = npobject_listeners_.find(route_id);
327 void NPChannelBase::AddMappingForNPObjectProxy(int route_id, argument
332 RemoveMappingForNPObjectProxy(int route_id) argument
336 AddMappingForNPObjectStub(int route_id, NPObject* object) argument
342 RemoveMappingForNPObjectStub(int route_id, NPObject* object) argument
348 AddMappingForNPObjectOwner(int route_id, struct _NPP* owner) argument
360 RemoveMappingForNPObjectOwner(int route_id) argument
366 GetExistingNPObjectProxy(int route_id) argument
376 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/chrome/browser/signin/
H A Dsignin_header_helper.h61 int route_id; member in struct:signin::ManageAccountsParams
82 int route_id);
/external/chromium_org/content/common/gpu/client/
H A Dgpu_channel_host.cc147 int32 route_id = GenerateRouteID(); local
149 surface_id, init_params, route_id);
172 new CommandBufferProxyImpl(this, route_id);
173 AddRoute(route_id, command_buffer->AsWeakPtr());
176 proxies_[route_id] = command_buffer;
194 int32 route_id = GenerateRouteID(); local
198 route_id,
211 new CommandBufferProxyImpl(this, route_id);
212 AddRoute(route_id, command_buffer->AsWeakPtr());
215 proxies_[route_id]
241 int route_id = command_buffer->GetRouteID(); local
250 AddRoute( int route_id, base::WeakPtr<IPC::Listener> listener) argument
261 RemoveRoute(int route_id) argument
350 AddRoute( int route_id, base::WeakPtr<IPC::Listener> listener, scoped_refptr<MessageLoopProxy> loop) argument
361 RemoveRoute(int route_id) argument
[all...]
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_message_filter_mac.h39 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);
H A Dspellcheck_message_filter_mac.cc40 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) { argument
294 if (!tag_map_.count(route_id))
92 RequestCheck( const base::string16& text, int route_id, int identifier, int document_tag, const std::vector<SpellCheckMarker>& markers) argument
251 OnCheckSpelling(const base::string16& word, int route_id, bool* correct) argument
272 OnRequestTextCheck( int route_id, int identifier, const base::string16& text, std::vector<SpellCheckMarker> markers) argument
302 RetireDocumentTag(int route_id) argument
[all...]
H A Dspellcheck_message_filter.h38 void OnCallSpellingService(int route_id,
46 int route_id,
61 int route_id,
/external/chromium_org/chrome/browser/ui/android/infobars/
H A Dauto_login_prompter.cc50 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);
48 ShowInfoBarIfPossible(net::URLRequest* request, int child_id, int route_id) argument
68 ShowInfoBarUIThread(Params params, const GURL& url, int child_id, int route_id) argument
H A Dauto_login_prompter.h37 int route_id);
51 int route_id);
/external/chromium_org/content/renderer/
H A Dshared_worker_repository.cc30 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,
/external/chromium_org/content/browser/shared_worker/
H A Dshared_worker_host.h77 void AddFilter(SharedWorkerMessageFilter* filter, int route_id);
95 FilterInfo(SharedWorkerMessageFilter* filter, int route_id) argument
96 : filter_(filter), route_id_(route_id), message_port_id_(0) {}
98 int route_id() const { return route_id_; } function in class:content::SharedWorkerHost::FilterInfo
119 bool HasFilter(SharedWorkerMessageFilter* filter, int route_id) const;
121 int route_id,
/external/chromium_org/content/test/
H A Dtest_web_contents.h109 int route_id,
114 int route_id,
117 int route_id) OVERRIDE;
118 virtual void ShowCreatedWindow(int route_id,
122 virtual void ShowCreatedWidget(int route_id,
124 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE;
/external/chromium_org/content/browser/
H A Dmessage_port_message_filter.cc75 void MessagePortMessageFilter::OnCreateMessagePort(int *route_id, argument
77 *route_id = next_routing_id_.Run();
78 MessagePortService::GetInstance()->Create(*route_id, this, message_port_id);
/external/chromium_org/content/common/gpu/
H A Dgpu_channel.h113 int32 route_id);
117 GpuCommandBufferStub* LookupCommandBuffer(int32 route_id);
124 bool AddRoute(int32 route_id, IPC::Listener* listener);
127 void RemoveRoute(int32 route_id);
161 int32 route_id,
163 void OnDestroyCommandBuffer(int32 route_id);
164 void OnDevToolsStartEventsRecording(int32 route_id, bool* succeeded);

Completed in 1082 milliseconds

1234567