Home | History | Annotate | Download | only in prerender

Lines Matching refs:TabContents

22 class TabContents;
28 struct hash<TabContents*> {
29 std::size_t operator()(TabContents* value) const {
67 // For a given TabContents that wants to navigate to the URL supplied,
69 // and substitutes the prerendered RVH into the TabContents. Returns
71 bool MaybeUsePreloadedPage(TabContents* tc, const GURL& url);
89 TabContents* tab_contents);
119 // Maintaining and querying the set of TabContents belonging to this
121 void MarkTabContentsAsPrerendered(TabContents* tc);
122 void MarkTabContentsAsWouldBePrerendered(TabContents* tc);
123 void MarkTabContentsAsNotPrerendered(TabContents* tc);
124 bool IsTabContentsPrerendered(TabContents* tc) const;
125 bool WouldTabContentsBePrerendered(TabContents* tc) const;
198 // Set of TabContents which are currently displaying a prerendered page.
199 base::hash_set<TabContents*> prerendered_tc_set_;
201 // Set of TabContents which would be displaying a prerendered page
203 base::hash_set<TabContents*> would_be_prerendered_tc_set_;