HomeSort by relevance Sort by last modified time
    Searched full:navigations (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/chromium/chrome/browser/sessions/
tab_restore_service_browsertest.cc 137 ASSERT_EQ(3U, tab->navigations.size());
138 EXPECT_TRUE(url1_ == tab->navigations[0].virtual_url());
139 EXPECT_TRUE(url2_ == tab->navigations[1].virtual_url());
140 EXPECT_TRUE(url3_ == tab->navigations[2].virtual_url());
158 ASSERT_EQ(3U, tab->navigations.size());
159 EXPECT_EQ(url1_, tab->navigations[0].virtual_url());
160 EXPECT_EQ(url2_, tab->navigations[1].virtual_url());
161 EXPECT_EQ(url3_, tab->navigations[2].virtual_url());
168 // navigations.
192 ASSERT_EQ(3U, tab->navigations.size())
    [all...]
session_service_unittest.cc 169 helper_.AssertNavigationEquals(nav1, tab->navigations[0]);
221 helper_.AssertNavigationEquals(nav1, tab->navigations[0]);
253 helper_.AssertNavigationEquals(nav1, tab->navigations[0]);
254 helper_.AssertNavigationEquals(nav2, tab->navigations[1]);
255 helper_.AssertNavigationEquals(nav1, tab->navigations[2]);
306 helper_.AssertNavigationEquals(nav1, tab->navigations[0]);
310 helper_.AssertNavigationEquals(nav2, tab->navigations[0]);
340 helper_.AssertNavigationEquals(nav1, tab->navigations[0]);
373 helper_.AssertNavigationEquals(nav1, tab->navigations[0]);
377 helper_.AssertNavigationEquals(nav2, tab->navigations[0])
    [all...]
tab_restore_service_delegate.h 40 const std::vector<TabNavigation>& navigations,
49 const std::vector<TabNavigation>& 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...]
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
session_service_test_helper.cc 73 ASSERT_EQ(nav_count, session_tab.navigations.size());
92 EXPECT_EQ(nav_count, windows[0]->tabs[0]->navigations.size());
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.
session_service.cc 812 std::vector<TabNavigation>* navigations,
814 DCHECK(navigations);
815 for (std::vector<TabNavigation>::iterator i = navigations->begin();
816 i != navigations->end(); ++i) {
820 return navigations->end();
871 if (tab->window_id.id() && !tab->navigations.empty()) {
878 FindClosestNavigationWithIndex(&(tab->navigations),
880 if (j == tab->navigations.end()) {
882 static_cast<int>(tab->navigations.size() - 1);
885 static_cast<int>(j - tab->navigations.begin())
    [all...]
  /external/chromium/chrome/browser/ui/
browser_tab_restore_service_delegate.cc 41 const std::vector<TabNavigation>& navigations,
49 return browser_->AddRestoredTab(navigations, tab_index, selected_navigation,
55 const std::vector<TabNavigation>& navigations,
60 browser_->ReplaceRestoredTab(navigations, selected_navigation,
browser_tab_restore_service_delegate.h 37 const std::vector<TabNavigation>& navigations,
46 const std::vector<TabNavigation>& navigations,
  /external/chromium/chrome/browser/sync/glue/
session_model_associator_unittest.cc 31 win.tabs[0]->navigations.push_back(nav);
42 tab.navigations.push_back(nav);
49 tab.navigations.push_back(nav2);
100 ASSERT_EQ(12, tab.navigations[0].index());
101 ASSERT_EQ(GURL("referrer"), tab.navigations[0].referrer());
102 ASSERT_EQ(string16(ASCIIToUTF16("title")), tab.navigations[0].title());
103 ASSERT_EQ(PageTransition::TYPED, tab.navigations[0].transition());
104 ASSERT_EQ(GURL("http://foo/1"), tab.navigations[0].virtual_url());
session_model_associator.cc 33 // The maximum number of navigations in each direction we care to sync.
617 tab->navigations.clear(); // In case we are reusing a previous SessionTab.
619 AppendSessionTabNavigation(specifics.navigation(i), &tab->navigations);
626 std::vector<TabNavigation>* navigations) {
706 navigations->insert(navigations->end(), tab_navigation);
828 if (tab.navigations.empty())
834 static_cast<int>(tab.navigations.size() - 1)));
836 tab.navigations.size() == 1 &&
837 tab.navigations.at(selected_index).virtual_url() =
    [all...]
  /external/chromium/chrome/browser/ui/webui/
value_helper.cc 13 if (tab.navigations.empty())
17 tab.navigations.at(tab.current_navigation_index);
foreign_session_handler.cc 199 if (tab.navigations.empty())
205 static_cast<int>(tab.navigations.size() - 1)));
207 tab.navigations.at(selected_index);
  /external/chromium/chrome/common/extensions/docs/static/
experimental.webNavigation.html 6 notifications about the status of navigations requests in-flight. This
history.html 84 For subframe navigations that are explicitly requested by the user
99 These are not quite the same as <a href="#tt_typed">typed</a> navigations
  /external/chromium/chrome/browser/extensions/
extension_webnavigation_unittest.cc 65 // Navigations to a network error page should be ignored.
92 // Navigations to a network error page should be ignored.
  /external/chromium/chrome/browser/sync/protocol/
session_specifics.proto 53 // Identifies the index of the current navigation in navigations. For
54 // example, if this is 2 it means the current navigation is navigations[2].
  /external/chromium/chrome/browser/sync/
profile_sync_service_session_unittest.cc 297 ASSERT_EQ(1U, foreign_sessions[0]->windows[0]->tabs[0]->navigations.size());
308 foreign_sessions[0]->windows[0]->tabs[0]->navigations[0].index());
310 foreign_sessions[0]->windows[0]->tabs[0]->navigations[0].referrer());
312 foreign_sessions[0]->windows[0]->tabs[0]->navigations[0].title());
314 foreign_sessions[0]->windows[0]->tabs[0]->navigations[0].transition());
316 foreign_sessions[0]->windows[0]->tabs[0]->navigations[0].virtual_url());
  /external/chromium/chrome/browser/automation/
automation_tab_tracker.cc 25 // We also want to know about navigations so we can keep track of the last
automation_tab_helper.h 39 // TODO(kkania): Track other types of scheduled navigations.
  /external/chromium/chrome/browser/
browser_about_handler.h 34 // We have a few magic commands that don't cause navigations, but rather pop up
external_tab_container_win.h 237 // Top level navigations received for a tab while it is waiting for an ack
331 // set to true if the host needs to get notified of all top level navigations
346 // navigations. An instance of this class is created for handling window.open
347 // or link navigations with target blank, etc.
  /external/webkit/Source/WebKit/mac/WebInspector/
WebNodeHighlighter.mm 59 // The scrollview's content view stays around between page navigations, so target it.
  /external/chromium/chrome/browser/tabs/
tab_finder.h 77 // TabContentsObserverImpl to listen for navigations.

Completed in 377 milliseconds

1 2 3 4