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

1 2 3 4 5 6 7 8 9

  /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 40 // 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);
render_view_host_tracker.cc 36 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/
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/spellchecker/
spellcheck_message_filter_mac.h 40 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);
spellcheck_message_filter.h 39 void OnCallSpellingService(int route_id,
47 int route_id,
62 int route_id,
spellcheck_message_filter_mac.cc 38 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) {
295 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/worker_host/
worker_message_filter.cc 81 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,
110 *route_id = next_routing_id_.Run()
    [all...]
worker_message_filter.h 42 int* route_id);
45 int* route_id,
49 void OnCreateMessagePort(int* route_id, int* message_port_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/chrome/browser/prerender/
prerender_tracker.h 42 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,
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...]
  /external/chromium_org/content/child/npapi/
np_channel_base.cc 143 NPObjectBase* NPChannelBase::GetNPObjectListenerForRoute(int route_id) {
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,
237 npobject_listeners_[route_id] = npobject;
242 router_.AddRoute(route_id, listener);
245 void NPChannelBase::RemoveRoute(int route_id) {
246 router_.RemoveRoute(route_id);
248 ListenerMap::iterator iter = npobject_listeners_.find(route_id);
312 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,
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/content/test/
test_web_contents.h 109 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_org/chrome/browser/ui/
auto_login_prompter.h 37 int route_id);
51 int route_id);
  /external/chromium_org/chrome/browser/
validation_message_message_filter.h 32 void OnShowValidationMessage(int route_id,
37 void OnMoveValidationMessage(int route_id,
validation_message_message_filter.cc 63 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);

Completed in 333 milliseconds

1 2 3 4 5 6 7 8 9