summaryrefslogtreecommitdiffstats
path: root/content/shell
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-20 23:00:42 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-20 23:00:42 +0000
commit674bc59999a151a3a8f76bb4c24cc3bee2f39090 (patch)
treeee68efd3843d86b8f1bbb66b43c7d9f02399487e /content/shell
parent7f2c5556f158abe6518cc907a33702c651a9cce0 (diff)
downloadchromium_src-674bc59999a151a3a8f76bb4c24cc3bee2f39090.zip
chromium_src-674bc59999a151a3a8f76bb4c24cc3bee2f39090.tar.gz
chromium_src-674bc59999a151a3a8f76bb4c24cc3bee2f39090.tar.bz2
Move TabContentsDelegate to content/public/browser and put it in the content namespace.
- Rename TabContentsDelegate to WebContentsDelegate and move it to web_contents_delegate.* BUG=98716,105875 R=jam@chromium.org TBR=avi@chromium.org Review URL: http://codereview.chromium.org/9008013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115213 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell')
-rw-r--r--content/shell/shell.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/shell/shell.h b/content/shell/shell.h
index af5128c..ad8467e 100644
--- a/content/shell/shell.h
+++ b/content/shell/shell.h
@@ -12,7 +12,7 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/string_piece.h"
-#include "content/browser/tab_contents/tab_contents_delegate.h"
+#include "content/public/browser/web_contents_delegate.h"
#include "ui/gfx/native_widget_types.h"
class GURL;
@@ -25,7 +25,7 @@ class BrowserContext;
// This represents one window of the Content Shell, i.e. all the UI including
// buttons and url bar, as well as the web content area.
-class Shell : public TabContentsDelegate {
+class Shell : public WebContentsDelegate {
public:
virtual ~Shell();
@@ -84,7 +84,7 @@ class Shell : public TabContentsDelegate {
gfx::NativeView GetContentView();
- // TabContentsDelegate
+ // content::WebContentsDelegate
virtual void LoadingStateChanged(TabContents* source) OVERRIDE;
virtual void DidNavigateMainFramePostCommit(TabContents* tab) OVERRIDE;
virtual void UpdatePreferredSize(TabContents* source,