diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-22 20:51:25 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-22 20:51:25 +0000 |
commit | d8c66043b5bc1e26d5abb2cc6cf84d3a586ed126 (patch) | |
tree | df54bcd989dc3fe077d7cdab970990a40f3281eb /chrome/browser/external_tab_container_win.cc | |
parent | 565ddfa2a9489e8d3d333c9e28b61a4be272547b (diff) | |
download | chromium_src-d8c66043b5bc1e26d5abb2cc6cf84d3a586ed126.zip chromium_src-d8c66043b5bc1e26d5abb2cc6cf84d3a586ed126.tar.gz chromium_src-d8c66043b5bc1e26d5abb2cc6cf84d3a586ed126.tar.bz2 |
Move TabContentsObserver to content/public, rename it to WebContentsObserver, and put it into the content namespace.
BUG=98716
TBR=tburkard
Review URL: http://codereview.chromium.org/9026011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115599 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/external_tab_container_win.cc')
-rw-r--r-- | chrome/browser/external_tab_container_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/external_tab_container_win.cc b/chrome/browser/external_tab_container_win.cc index 9c00811..5939275 100644 --- a/chrome/browser/external_tab_container_win.cc +++ b/chrome/browser/external_tab_container_win.cc @@ -206,7 +206,7 @@ bool ExternalTabContainer::Init(Profile* profile, registrar_.Add(this, content::NOTIFICATION_RENDER_VIEW_HOST_CREATED, content::NotificationService::AllSources()); - TabContentsObserver::Observe(tab_contents_->tab_contents()); + content::WebContentsObserver::Observe(tab_contents_->tab_contents()); // Start loading initial URL if (!initial_url.is_empty()) { |