HomeSort by relevance Sort by last modified time
    Searched defs:navigations (Results 1 - 4 of 4) sorted by null

  /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_org/content/browser/web_contents/
web_contents_view_aura_browsertest.cc 399 // Do a few navigations initiated by the page.
401 // navigations.
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);
555 // Tests that navigations resulting from reloads, history.replaceState
    [all...]

Completed in 130 milliseconds