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/autocomplete_history_manager.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/autocomplete_history_manager.cc')
-rw-r--r-- | chrome/browser/autocomplete_history_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autocomplete_history_manager.cc b/chrome/browser/autocomplete_history_manager.cc index 964697c..9aaaaba 100644 --- a/chrome/browser/autocomplete_history_manager.cc +++ b/chrome/browser/autocomplete_history_manager.cc @@ -108,7 +108,7 @@ bool IsTextField(const FormField& field) { AutocompleteHistoryManager::AutocompleteHistoryManager( TabContents* tab_contents) - : TabContentsObserver(tab_contents), + : content::WebContentsObserver(tab_contents), pending_query_handle_(0), query_id_(0), external_delegate_(NULL) { @@ -235,7 +235,7 @@ AutocompleteHistoryManager::AutocompleteHistoryManager( TabContents* tab_contents, Profile* profile, WebDataService* wds) - : TabContentsObserver(tab_contents), + : content::WebContentsObserver(tab_contents), profile_(profile), web_data_service_(wds), pending_query_handle_(0), |