diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 14:40:00 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 14:40:00 +0000 |
commit | 93f230e0c773d6335dd7c86dae08f73e7cd25b47 (patch) | |
tree | f5d0a3748cfa52c193267eb84bcc686e1eeef8e7 /content/browser/tab_contents/navigation_controller.h | |
parent | 55d2724041d4171ca73cfda0dfb5a2a8b60eda66 (diff) | |
download | chromium_src-93f230e0c773d6335dd7c86dae08f73e7cd25b47.zip chromium_src-93f230e0c773d6335dd7c86dae08f73e7cd25b47.tar.gz chromium_src-93f230e0c773d6335dd7c86dae08f73e7cd25b47.tar.bz2 |
Removes bookmarkbar logic from TabContents.
BUG=83975
TEST=none
Review URL: http://codereview.chromium.org/7087006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87472 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/tab_contents/navigation_controller.h')
-rw-r--r-- | content/browser/tab_contents/navigation_controller.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/content/browser/tab_contents/navigation_controller.h b/content/browser/tab_contents/navigation_controller.h index e36a4b0..5994ce2 100644 --- a/content/browser/tab_contents/navigation_controller.h +++ b/content/browser/tab_contents/navigation_controller.h @@ -226,11 +226,7 @@ class NavigationController { // // In the case that nothing has changed, the details structure is undefined // and it will return false. - // - // |extra_invalidate_flags| are an additional set of flags (InvalidateTypes) - // added to the flags sent to the delegate's NotifyNavigationStateChanged. bool RendererDidNavigate(const ViewHostMsg_FrameNavigate_Params& params, - int extra_invalidate_flags, content::LoadCommittedDetails* details); // Notifies us that we just became active. This is used by the TabContents @@ -383,11 +379,7 @@ class NavigationController { // Allows the derived class to issue notifications that a load has been // committed. This will fill in the active entry to the details structure. - // - // |extra_invalidate_flags| are an additional set of flags (InvalidateTypes) - // added to the flags sent to the delegate's NotifyNavigationStateChanged. - void NotifyNavigationEntryCommitted(content::LoadCommittedDetails* details, - int extra_invalidate_flags); + void NotifyNavigationEntryCommitted(content::LoadCommittedDetails* details); // Updates the virtual URL of an entry to match a new URL, for cases where // the real renderer URL is derived from the virtual URL, like view-source: |