Home
last modified time | relevance | path

Searched refs:child_route_id_pair (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/chrome/browser/prerender/
Dprerender_tracker.cc91 ChildRouteIdPair child_route_id_pair(child_id, route_id); in GetFinalStatus() local
95 final_status_map_.find(child_route_id_pair); in GetFinalStatus()
111 ChildRouteIdPair child_route_id_pair(child_id, route_id); in OnPrerenderStart() local
115 base::Bind(&AddPrerenderOnIOThreadTask, child_route_id_pair)); in OnPrerenderStart()
119 DCHECK_EQ(0u, final_status_map_.count(child_route_id_pair)); in OnPrerenderStart()
122 std::make_pair(child_route_id_pair, in OnPrerenderStart()
135 ChildRouteIdPair child_route_id_pair(child_id, route_id); in OnPrerenderStop() local
140 base::Bind(&RemovePrerenderOnIOThreadTask, child_route_id_pair, in OnPrerenderStop()
144 size_t num_erased = final_status_map_.erase(child_route_id_pair); in OnPrerenderStop()
154 ChildRouteIdPair child_route_id_pair(child_id, route_id); in SetFinalStatus() local
[all …]
Dprerender_tracker.h97 void AddPrerenderPendingSwap(const ChildRouteIdPair& child_route_id_pair,
101 void RemovePrerenderPendingSwap(const ChildRouteIdPair& child_route_id_pair,
152 void AddPrerenderOnIOThread(const ChildRouteIdPair& child_route_id_pair);
153 void RemovePrerenderOnIOThread(const ChildRouteIdPair& child_route_id_pair,
158 const ChildRouteIdPair& child_route_id_pair, const GURL& url);
160 const ChildRouteIdPair& child_route_id_pair,
165 const ChildRouteIdPair& child_route_id_pair);
167 const ChildRouteIdPair& child_route_id_pair,
170 const ChildRouteIdPair& child_route_id_pair, const GURL& url);
172 const ChildRouteIdPair& child_route_id_pair,
Dprerender_tracker_unittest.cc99 std::pair<int, int> child_route_id_pair(child_id, route_id); in WasPrerenderCancelled() local
100 return cancelled_id_pairs_.count(child_route_id_pair) != 0; in WasPrerenderCancelled()
Dprerender_manager.cc1216 PrerenderTracker::ChildRouteIdPair child_route_id_pair(child_id, route_id); in RenderViewCreated() local
1217 rvh_ids_.push_back(child_route_id_pair); in RenderViewCreated()
1219 child_route_id_pair, url_); in RenderViewCreated()
/external/chromium/chrome/browser/prerender/
Dprerender_resource_handler.cc187 const std::pair<int, int>& child_route_id_pair, in RunCallbackFromUIThread() argument
193 prerender_callback_->Run(child_route_id_pair, in RunCallbackFromUIThread()
199 const std::pair<int, int>& child_route_id_pair, in StartPrerender() argument
208 prerender_manager_->AddPendingPreload(child_route_id_pair, in StartPrerender()
Dprerender_resource_handler.h91 void RunCallbackFromUIThread(const std::pair<int, int>& child_route_id_pair,
96 void StartPrerender(const std::pair<int, int>& child_route_id_pair,
Dprerender_manager.cc203 const std::pair<int,int>& child_route_id_pair, in AddPendingPreload() argument
219 child_id == child_route_id_pair.first && in AddPendingPreload()
220 route_id == child_route_id_pair.second) { in AddPendingPreload()
238 pending_prerender_list_.find(child_route_id_pair); in AddPendingPreload()
240 PendingPrerenderList::value_type el = std::make_pair(child_route_id_pair, in AddPendingPreload()
Dprerender_manager.h62 void AddPendingPreload(const std::pair<int, int>& child_route_id_pair,
Dprerender_resource_handler_unittest.cc113 void SetLastHandledURL(const std::pair<int, int>& child_route_id_pair, in SetLastHandledURL() argument