summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autocomplete_history_manager.cc
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-22 20:51:25 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-22 20:51:25 +0000
commitd8c66043b5bc1e26d5abb2cc6cf84d3a586ed126 (patch)
treedf54bcd989dc3fe077d7cdab970990a40f3281eb /chrome/browser/autocomplete_history_manager.cc
parent565ddfa2a9489e8d3d333c9e28b61a4be272547b (diff)
downloadchromium_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.cc4
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),