diff options
author | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-16 00:37:37 +0000 |
---|---|---|
committer | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-16 00:37:37 +0000 |
commit | 0ae7d14ea97bdb4170948521144de57059eb4eeb (patch) | |
tree | be76ed4549502f6ac6c4761a4e6e0420649fa94b /chrome/browser/profile.cc | |
parent | a6e14c9c3c2af6b0a541c9399a984bdf1c4398ad (diff) | |
download | chromium_src-0ae7d14ea97bdb4170948521144de57059eb4eeb.zip chromium_src-0ae7d14ea97bdb4170948521144de57059eb4eeb.tar.gz chromium_src-0ae7d14ea97bdb4170948521144de57059eb4eeb.tar.bz2 |
Remove registration step between NavigationController > Profile.
No code path requires NavigationControllers to register themselves
with a profile. We won't need this moving forward, either.
Review URL: http://codereview.chromium.org/2869
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2254 0039d316-1c4b-4281-b951-d872f2087c98
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. |