/external/chromium_org/chrome/browser/ui/toolbar/ |
D | back_forward_menu_model.cc | 308 contents->GetController().GetCurrentEntryIndex() - 1; in GetHistoryItemCount() 310 items = contents->GetController().GetCurrentEntryIndex(); in GetHistoryItemCount() 325 int current_entry = contents->GetController().GetCurrentEntryIndex(); in GetChapterStopCount() 403 int entry = contents->GetController().GetCurrentEntryIndex() + offset; in FindChapterStop() 438 index += contents->GetController().GetCurrentEntryIndex() + 1; in MenuIndexToNavEntryIndex() 441 index = contents->GetController().GetCurrentEntryIndex() - (index + 1); in MenuIndexToNavEntryIndex()
|
/external/chromium/chrome/browser/ui/toolbar/ |
D | back_forward_menu_model.cc | 288 contents->controller().GetCurrentEntryIndex() - 1; in GetHistoryItemCount() 290 items = contents->controller().GetCurrentEntryIndex(); in GetHistoryItemCount() 305 int current_entry = contents->controller().GetCurrentEntryIndex(); in GetChapterStopCount() 381 int entry = contents->controller().GetCurrentEntryIndex() + offset; in FindChapterStop() 415 index += contents->controller().GetCurrentEntryIndex() + 1; in MenuIndexToNavEntryIndex() 418 index = contents->controller().GetCurrentEntryIndex() - (index + 1); in MenuIndexToNavEntryIndex()
|
/external/chromium_org/chrome/browser/sync/glue/ |
D | session_model_associator_unittest.cc | 182 MOCK_CONST_METHOD0(GetCurrentEntryIndex, int()); 236 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0)); in TEST_F() 248 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0)); in TEST_F() 259 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0)); in TEST_F() 272 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0)); in TEST_F() 293 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillOnce(Return(0)); in TEST_F() 306 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillOnce(Return(0)); in TEST_F() 340 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(2)); in TEST_F() 405 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0)); in TEST_F()
|
D | synced_tab_delegate_android.cc | 51 int SyncedTabDelegateAndroid::GetCurrentEntryIndex() const { in GetCurrentEntryIndex() function in browser_sync::SyncedTabDelegateAndroid 53 ->GetCurrentEntryIndex(); in GetCurrentEntryIndex()
|
D | synced_tab_delegate.h | 41 virtual int GetCurrentEntryIndex() const = 0;
|
D | synced_tab_delegate_android.h | 33 virtual int GetCurrentEntryIndex() const OVERRIDE;
|
D | session_model_associator.cc | 395 const int current_index = tab_delegate.GetCurrentEntryIndex(); in GetCurrentVirtualURL() 407 const int current_index = tab_delegate.GetCurrentEntryIndex(); in GetCurrentFaviconURL() 497 session_tab->current_navigation_index = tab_delegate.GetCurrentEntryIndex(); in SetSessionTabFromDelegate() 502 const int current_index = tab_delegate.GetCurrentEntryIndex(); in SetSessionTabFromDelegate()
|
/external/chromium_org/chrome/browser/ui/sync/ |
D | tab_contents_synced_tab_delegate.cc | 53 int TabContentsSyncedTabDelegate::GetCurrentEntryIndex() const { in GetCurrentEntryIndex() function in TabContentsSyncedTabDelegate 54 return web_contents_->GetController().GetCurrentEntryIndex(); in GetCurrentEntryIndex()
|
D | tab_contents_synced_tab_delegate.h | 29 virtual int GetCurrentEntryIndex() const OVERRIDE;
|
/external/chromium_org/chrome/browser/search/ |
D | search_terms_tracker.cc | 91 for (int i = controller->GetCurrentEntryIndex(); i >= 0; --i) { in FindMostRecentSearch() 98 if (i != controller->GetCurrentEntryIndex()) { in FindMostRecentSearch()
|
/external/chromium_org/content/browser/ |
D | site_per_process_browsertest.cc | 603 EXPECT_EQ(0, controller.GetCurrentEntryIndex()); in IN_PROC_BROWSER_TEST_F() 618 EXPECT_EQ(1, controller.GetCurrentEntryIndex()); in IN_PROC_BROWSER_TEST_F() 651 EXPECT_EQ(0, controller.GetCurrentEntryIndex()); in IN_PROC_BROWSER_TEST_F() 662 EXPECT_EQ(1, controller.GetCurrentEntryIndex()); in IN_PROC_BROWSER_TEST_F() 702 EXPECT_EQ(0, controller.GetCurrentEntryIndex()); in IN_PROC_BROWSER_TEST_F() 719 EXPECT_EQ(1, controller.GetCurrentEntryIndex()); in IN_PROC_BROWSER_TEST_F()
|
/external/chromium_org/chrome/browser/ |
D | browser_commands_unittest.cc | 92 EXPECT_EQ(2, controller.GetCurrentEntryIndex()); in TEST_F() 130 EXPECT_EQ(0, controller.GetCurrentEntryIndex()); in TEST_F()
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
D | options_browsertest.cc | 44 const int current = controller.GetCurrentEntryIndex(); in ReportHistory()
|
/external/chromium_org/content/browser/frame_host/ |
D | navigation_controller_impl.cc | 292 current_index = GetCurrentEntryIndex(); in ReloadInternal() 456 int NavigationControllerImpl::GetCurrentEntryIndex() const { in GetCurrentEntryIndex() function in content::NavigationControllerImpl 503 return GetCurrentEntryIndex() + offset; in GetIndexForOffset() 517 return entries_.size() > 1 && GetCurrentEntryIndex() > 0; in CanGoBack() 521 int index = GetCurrentEntryIndex(); in CanGoForward() 537 int current_index = GetCurrentEntryIndex(); in GoBack() 558 int current_index = GetCurrentEntryIndex(); in GoForward()
|
D | navigation_controller_impl_unittest.cc | 1928 EXPECT_EQ(2, controller.GetCurrentEntryIndex()); in TEST_F() 1938 EXPECT_EQ(1, controller.GetCurrentEntryIndex()); in TEST_F() 1950 EXPECT_EQ(0, controller.GetCurrentEntryIndex()); in TEST_F() 2042 EXPECT_EQ(0, controller.GetCurrentEntryIndex()); in TEST_F() 2055 EXPECT_EQ(1, controller.GetCurrentEntryIndex()); in TEST_F() 2080 EXPECT_EQ(2, controller.GetCurrentEntryIndex()); in TEST_F() 3101 ASSERT_EQ(0, other_controller.GetCurrentEntryIndex()); in TEST_F() 3169 ASSERT_EQ(2, other_controller.GetCurrentEntryIndex()); in TEST_F() 3216 ASSERT_EQ(1, other_controller.GetCurrentEntryIndex()); in TEST_F() 3254 ASSERT_EQ(2, other_controller.GetCurrentEntryIndex()); in TEST_F() [all …]
|
D | navigation_entry_screenshot_manager.cc | 218 const int current = owner_->GetCurrentEntryIndex(); in PurgeScreenshotsIfNecessary()
|
D | navigation_controller_impl.h | 47 virtual int GetCurrentEntryIndex() const OVERRIDE; in NON_EXPORTED_BASE()
|
/external/chromium/chrome/browser/ |
D | browser_commands_unittest.cc | 75 ASSERT_EQ(2, controller.GetCurrentEntryIndex()); in TEST_F()
|
/external/chromium_org/content/public/browser/ |
D | navigation_controller.h | 244 virtual int GetCurrentEntryIndex() const = 0;
|
/external/chromium_org/chrome/browser/sync/sessions2/ |
D | sessions_sync_manager.cc | 750 const int current_index = tab_delegate.GetCurrentEntryIndex(); in GetCurrentVirtualURL() 762 const int current_index = tab_delegate.GetCurrentEntryIndex(); in GetCurrentFaviconURL() 842 session_tab->current_navigation_index = tab_delegate.GetCurrentEntryIndex(); in SetSessionTabFromDelegate() 847 const int current_index = tab_delegate.GetCurrentEntryIndex(); in SetSessionTabFromDelegate()
|
/external/chromium_org/android_webview/native/ |
D | state_serializer.cc | 52 const int selected_entry = controller.GetCurrentEntryIndex(); in WriteToPickle()
|
/external/chromium_org/content/shell/browser/ |
D | shell.cc | 213 int current_index = web_contents_->GetController().GetCurrentEntryIndex(); in UpdateNavigationControls()
|
/external/chromium_org/chrome/browser/ui/webui/memory_internals/ |
D | memory_internals_proxy.cc | 338 tab->SetInteger("index", controller.GetCurrentEntryIndex()); in ConvertTabsInformation()
|
/external/chromium_org/chrome/browser/safe_browsing/ |
D | browser_feature_extractor.cc | 211 int index = controller.GetCurrentEntryIndex(); in ExtractFeatures()
|
/external/chromium_org/chrome/browser/sessions/ |
D | tab_restore_service_helper.cc | 418 tab->current_navigation_index = controller->GetCurrentEntryIndex(); in PopulateTab()
|