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.h | |
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.h')
-rw-r--r-- | chrome/browser/autocomplete_history_manager.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/browser/autocomplete_history_manager.h b/chrome/browser/autocomplete_history_manager.h index dafe49a..8f5eabc 100644 --- a/chrome/browser/autocomplete_history_manager.h +++ b/chrome/browser/autocomplete_history_manager.h @@ -11,7 +11,7 @@ #include "base/gtest_prod_util.h" #include "chrome/browser/prefs/pref_member.h" #include "chrome/browser/webdata/web_data_service.h" -#include "content/browser/tab_contents/tab_contents_observer.h" +#include "content/public/browser/web_contents_observer.h" namespace webkit { namespace forms { @@ -21,17 +21,16 @@ struct FormData; class AutofillExternalDelegate; class Profile; -class TabContents; // Per-tab Autocomplete history manager. Handles receiving form data from the // renderer and the storing and retrieving of form data through WebDataService. -class AutocompleteHistoryManager : public TabContentsObserver, +class AutocompleteHistoryManager : public content::WebContentsObserver, public WebDataServiceConsumer { public: explicit AutocompleteHistoryManager(TabContents* tab_contents); virtual ~AutocompleteHistoryManager(); - // TabContentsObserver implementation. + // content::WebContentsObserver implementation. virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; // WebDataServiceConsumer implementation. |