From 674bc59999a151a3a8f76bb4c24cc3bee2f39090 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Tue, 20 Dec 2011 23:00:42 +0000 Subject: 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 --- content/shell/shell.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/shell') 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, -- cgit v1.1