/external/chromium_org/chrome/browser/sessions/ |
session_types.h | 36 // of navigations in the current sessions (chrome://newtab is not stored), we 41 static_cast<int>(navigations.size() - 1))); 46 // |navigations|. Note that the sync protocol buffer doesn't 52 // Uses SerializedNavigationEntry::ToSyncData to convert |navigations|. Note 72 // Identifies the index of the current navigation in navigations. For 73 // example, if this is 2 it means the current navigation is navigations[2]. 76 // to SerializedNavigationEntry.index, not the index in navigations. When done 77 // creating though, this is set to the index in navigations. 79 // NOTE 2: this value can be larger than the size of |navigations|, due to 81 // checking must be performed before indexing into |navigations| 97 std::vector<sessions::SerializedNavigationEntry> navigations; member in struct:SessionTab [all...] |
tab_restore_service.h | 84 // The navigations. 85 std::vector<sessions::SerializedNavigationEntry> navigations; member in struct:TabRestoreService::Tab 87 // Index of the selected navigation in navigations. 106 // The user agent override used for the tab's navigations (if applicable).
|
persistent_tab_restore_service.cc | 188 // Validates all entries in |entries|, deleting any with no navigations. This 424 const std::vector<sessions::SerializedNavigationEntry>& navigations = local 425 tab.navigations; 426 int max_index = static_cast<int>(navigations.size()); 433 if (ShouldTrackEntry(navigations[i].virtual_url())) { 465 // Then write the navigations. 468 if (ShouldTrackEntry(navigations[i].virtual_url())) { 471 navigations[i])); 526 const std::vector<sessions::SerializedNavigationEntry>& navigations = local 527 tab.navigations; [all...] |
/external/chromium/chrome/browser/sessions/ |
session_types.h | 119 // Identifies the index of the current navigation in navigations. For 120 // example, if this is 2 it means the current navigation is navigations[2]. 123 // corresponds to TabNavigation.index, not the index in navigations. When done 124 // creating though, this is set to the index in navigations. 126 // NOTE 2: this value can be larger than the size of |navigations|, due to 128 // checking must be performed before indexing into |navigations|. 140 std::vector<TabNavigation> navigations; member in struct:SessionTab
|
tab_restore_service.h | 80 // The navigations. 81 std::vector<TabNavigation> navigations; member in struct:TabRestoreService::Tab 83 // Index of the selected navigation in navigations. 196 // Populates the tab's navigations from the NavigationController, and its 272 // on the number of navigations. 275 // Validates all entries in |entries|, deleting any with no navigations.
|
tab_restore_service.cc | 156 GURL url = tab.navigations.at(tab.current_navigation_index).virtual_url(); 228 if (local_tab->navigations.empty()) 251 if (window->tabs[entry_index].navigations.empty()) { 353 delegate->AddRestoredTab(tab.navigations, delegate->GetTabCount(), 485 tab->navigations.resize(static_cast<int>(entry_count)); 489 tab->navigations[i].SetFromNavigationEntry(*entry); 595 const std::vector<TabNavigation>& navigations = tab.navigations; local 596 int max_index = static_cast<int>(navigations.size()); 603 if (ShouldTrackEntry(navigations[i])) 688 const std::vector<TabNavigation>& navigations = tab.navigations; local [all...] |
/external/chromium_org/content/browser/web_contents/ |
web_contents_view_aura_browsertest.cc | 404 // Do a few navigations initiated by the page. 505 } navigations[] = { local 516 for (int i = 0; !navigations[i].url.is_empty(); ++i) { 518 NavigationController::LoadURLParams params(navigations[i].url); 519 params.transition_type = PageTransitionFromInt(navigations[i].transition); 527 << navigations[i].url.spec(); 546 NavigationController::LoadURLParams params(navigations[0].url); 547 params.transition_type = PageTransitionFromInt(navigations[0].transition);
|