diff options
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index 28027c7..dacbe95 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -451,19 +451,6 @@ class OffTheRecordProfileImpl : public Profile, profile_->SetID(id); } - virtual void RegisterNavigationController(NavigationController* controller) { - profile_->RegisterNavigationController(controller); - } - - virtual void UnregisterNavigationController(NavigationController* - controller) { - profile_->UnregisterNavigationController(controller); - } - - virtual const Profile::ProfileControllerSet& GetNavigationControllers() { - return profile_->GetNavigationControllers(); - } - virtual bool DidLastSessionExitCleanly() { return profile_->DidLastSessionExitCleanly(); } @@ -815,20 +802,6 @@ void ProfileImpl::SetID(const std::wstring& id) { GetPrefs()->SetString(prefs::kProfileID, id); } -void ProfileImpl::RegisterNavigationController( - NavigationController* controller) { - controllers_.insert(controller); -} - -void ProfileImpl::UnregisterNavigationController( - NavigationController* controller) { - controllers_.erase(controller); -} - -const Profile::ProfileControllerSet& ProfileImpl::GetNavigationControllers() { - return controllers_; -} - bool ProfileImpl::DidLastSessionExitCleanly() { // last_session_exited_cleanly_ is set when the preferences are loaded. Force // it to be set by asking for the prefs. |