HomeSort by relevance Sort by last modified time
    Searched refs:GetCurrentEntryIndex (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/chrome/browser/sync/glue/
synced_tab_delegate.h 41 virtual int GetCurrentEntryIndex() const = 0;
synced_tab_delegate_android.h 33 virtual int GetCurrentEntryIndex() const OVERRIDE;
synced_tab_delegate_android.cc 51 int SyncedTabDelegateAndroid::GetCurrentEntryIndex() const {
53 ->GetCurrentEntryIndex();
session_model_associator_unittest.cc 182 MOCK_CONST_METHOD0(GetCurrentEntryIndex, int());
235 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0));
247 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0));
258 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0));
271 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0));
292 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillOnce(Return(0));
305 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillOnce(Return(0));
336 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(2));
398 EXPECT_CALL(tab_mock, GetCurrentEntryIndex()).WillRepeatedly(Return(0));
session_model_associator.cc 392 const int current_index = tab_delegate.GetCurrentEntryIndex();
404 const int current_index = tab_delegate.GetCurrentEntryIndex();
494 session_tab->current_navigation_index = tab_delegate.GetCurrentEntryIndex();
499 const int current_index = tab_delegate.GetCurrentEntryIndex();
    [all...]
  /external/chromium_org/chrome/browser/ui/sync/
tab_contents_synced_tab_delegate.h 29 virtual int GetCurrentEntryIndex() const OVERRIDE;
tab_contents_synced_tab_delegate.cc 53 int TabContentsSyncedTabDelegate::GetCurrentEntryIndex() const {
54 return web_contents_->GetController().GetCurrentEntryIndex();
  /external/chromium_org/chrome/browser/ui/webui/options/
options_browsertest.cc 38 const int current = controller.GetCurrentEntryIndex();
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 288 contents->controller().GetCurrentEntryIndex() - 1;
290 items = contents->controller().GetCurrentEntryIndex();
305 int current_entry = contents->controller().GetCurrentEntryIndex();
381 int entry = contents->controller().GetCurrentEntryIndex() + offset;
415 index += contents->controller().GetCurrentEntryIndex() + 1;
418 index = contents->controller().GetCurrentEntryIndex() - (index + 1);
  /external/chromium_org/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 309 contents->GetController().GetCurrentEntryIndex() - 1;
311 items = contents->GetController().GetCurrentEntryIndex();
326 int current_entry = contents->GetController().GetCurrentEntryIndex();
404 int entry = contents->GetController().GetCurrentEntryIndex() + offset;
439 index += contents->GetController().GetCurrentEntryIndex() + 1;
442 index = contents->GetController().GetCurrentEntryIndex() - (index + 1);
  /external/chromium_org/chrome/browser/search/
search_terms_tracker.cc 91 for (int i = controller->GetCurrentEntryIndex(); i >= 0; --i) {
98 if (i != controller->GetCurrentEntryIndex()) {
  /external/chromium_org/content/public/browser/
navigation_controller.h 235 virtual int GetCurrentEntryIndex() const = 0;
  /external/chromium_org/chrome/browser/
browser_commands_unittest.cc 92 EXPECT_EQ(2, controller.GetCurrentEntryIndex());
130 EXPECT_EQ(0, controller.GetCurrentEntryIndex());
  /external/chromium/chrome/browser/
browser_commands_unittest.cc 75 ASSERT_EQ(2, controller.GetCurrentEntryIndex());
  /external/chromium_org/content/browser/web_contents/
navigation_controller_impl.cc 294 current_index = GetCurrentEntryIndex();
447 int NavigationControllerImpl::GetCurrentEntryIndex() const {
494 return GetCurrentEntryIndex() + offset;
508 return entries_.size() > 1 && GetCurrentEntryIndex() > 0;
512 int index = GetCurrentEntryIndex();
528 int current_index = GetCurrentEntryIndex();
549 int current_index = GetCurrentEntryIndex();
    [all...]
navigation_controller_impl_unittest.cc     [all...]
navigation_controller_impl.h 47 virtual int GetCurrentEntryIndex() const OVERRIDE;
web_contents_screenshot_manager.cc 214 const int current = owner_->GetCurrentEntryIndex();
  /external/chromium_org/android_webview/native/
state_serializer.cc 52 const int selected_entry = controller.GetCurrentEntryIndex();
  /external/chromium_org/content/shell/
shell.cc 199 int current_index = web_contents_->GetController().GetCurrentEntryIndex();
webkit_test_controller.cc 596 web_contents->GetController().GetCurrentEntryIndex());
  /external/chromium_org/chrome/browser/guestview/webview/
webview_guest.cc 310 web_contents()->GetController().GetCurrentEntryIndex());
  /external/chromium_org/chrome/browser/safe_browsing/
browser_feature_extractor.cc 183 int index = controller.GetCurrentEntryIndex();
  /external/chromium_org/chrome/browser/ui/webui/memory_internals/
memory_internals_proxy.cc 338 tab->SetInteger("index", controller.GetCurrentEntryIndex());
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_helper.cc 418 tab->current_navigation_index = controller->GetCurrentEntryIndex();

Completed in 473 milliseconds

1 2