diff options
Diffstat (limited to 'chrome/browser/automation/automation_provider_observers.cc')
-rw-r--r-- | chrome/browser/automation/automation_provider_observers.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/automation/automation_provider_observers.cc b/chrome/browser/automation/automation_provider_observers.cc index d0f2ba6..ad48c70 100644 --- a/chrome/browser/automation/automation_provider_observers.cc +++ b/chrome/browser/automation/automation_provider_observers.cc @@ -392,7 +392,7 @@ void TabStripNotificationObserver::Observe( if (type == notification_) { if (type == content::NOTIFICATION_TAB_PARENTED) { ObserveTab(&(content::Source<TabContentsWrapper>(source).ptr()-> - tab_contents()->controller())); + tab_contents()->GetController())); } else { ObserveTab(content::Source<NavigationController>(source).ptr()); } @@ -1079,7 +1079,7 @@ bool ExecuteBrowserCommandObserver::CreateAndRegisterObserver( case IDC_FORWARD: case IDC_RELOAD: { new NavigationNotificationObserver( - &browser->GetSelectedTabContents()->controller(), + &browser->GetSelectedTabContents()->GetController(), automation, reply_message, 1, false, false); break; } @@ -2751,7 +2751,7 @@ void NewTabObserver::Observe(int type, DCHECK_EQ(content::NOTIFICATION_TAB_PARENTED, type); NavigationController* controller = &(content::Source<TabContentsWrapper>(source).ptr()-> - tab_contents()->controller()); + tab_contents()->GetController()); if (automation_) { // TODO(phajdan.jr): Clean up this hack. We write the correct return type // here, but don't send the message. NavigationNotificationObserver |