diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-19 07:37:12 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-19 07:37:12 +0000 |
commit | 4d67720512d8cf6b92d350a86f3fbacff45b4c75 (patch) | |
tree | ecadf3bd24c2d2d366bf4afb95c540bfc850297d /chrome/browser/browser_prefs.cc | |
parent | d5102ee4076aa42ef3797fd276b5190afb8a8141 (diff) | |
download | chromium_src-4d67720512d8cf6b92d350a86f3fbacff45b4c75.zip chromium_src-4d67720512d8cf6b92d350a86f3fbacff45b4c75.tar.gz chromium_src-4d67720512d8cf6b92d350a86f3fbacff45b4c75.tar.bz2 |
Relanding the the refactoring the page info to have a model.
BUG=None
TEST=Make sure clicking the lock/warning icon when visiting a HTTPS page brings the page info and that it reports the correct info. Also check that the "Page/Frame info" right click menu works as well.
TBR=ben
Review URL: http://codereview.chromium.org/155753
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21065 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_prefs.cc')
-rw-r--r-- | chrome/browser/browser_prefs.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_prefs.cc b/chrome/browser/browser_prefs.cc index 84753d9..348f250 100644 --- a/chrome/browser/browser_prefs.cc +++ b/chrome/browser/browser_prefs.cc @@ -16,7 +16,7 @@ #include "chrome/browser/google_url_tracker.h" #include "chrome/browser/metrics/metrics_service.h" #include "chrome/browser/net/dns_global.h" -#include "chrome/browser/page_info_window.h" +#include "chrome/browser/page_info_model.h" #include "chrome/browser/password_manager/password_manager.h" #include "chrome/browser/renderer_host/browser_render_process_host.h" #include "chrome/browser/renderer_host/web_cache_manager.h" @@ -49,7 +49,7 @@ void RegisterAllPrefs(PrefService* user_prefs, PrefService* local_state) { browser_shutdown::RegisterPrefs(local_state); chrome_browser_net::RegisterPrefs(local_state); bookmark_utils::RegisterPrefs(local_state); - PageInfoWindow::RegisterPrefs(local_state); + PageInfoModel::RegisterPrefs(local_state); #if defined(TOOLKIT_VIEWS) // TODO(port): whittle this down as we port BrowserView::RegisterBrowserViewPrefs(local_state); TaskManager::RegisterPrefs(local_state); |