diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-02 18:53:43 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-02 18:53:43 +0000 |
commit | 1c05b7c76a093508b10bc6e628a9624180a8100c (patch) | |
tree | c94de1013db2eeb228f15af6577b2aa5605c89a9 /chrome/browser/ui/gtk/constrained_window_gtk.h | |
parent | df3bc522157c44e7eec42b092ffea182ff62882c (diff) | |
download | chromium_src-1c05b7c76a093508b10bc6e628a9624180a8100c.zip chromium_src-1c05b7c76a093508b10bc6e628a9624180a8100c.tar.gz chromium_src-1c05b7c76a093508b10bc6e628a9624180a8100c.tar.bz2 |
Move TabContentsViewGtk's delegate to content\public\browser. Also name it a delegate instead of a wrapper to match what Mac (and Win soon) call theirs.
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/9586009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124695 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/gtk/constrained_window_gtk.h')
-rw-r--r-- | chrome/browser/ui/gtk/constrained_window_gtk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/gtk/constrained_window_gtk.h b/chrome/browser/ui/gtk/constrained_window_gtk.h index 686a3cc..33646c0 100644 --- a/chrome/browser/ui/gtk/constrained_window_gtk.h +++ b/chrome/browser/ui/gtk/constrained_window_gtk.h @@ -20,7 +20,7 @@ typedef struct _GdkColor GdkColor; #if defined(TOOLKIT_VIEWS) class NativeTabContentsViewGtk; #else -class ChromeTabContentsViewWrapperGtk; +class ChromeWebContentsViewGtkDelegate; #endif class ConstrainedWindowGtkDelegate { @@ -52,7 +52,7 @@ class ConstrainedWindowGtk : public ConstrainedWindow { #if defined(TOOLKIT_VIEWS) typedef NativeTabContentsViewGtk TabContentsViewType; #else - typedef ChromeTabContentsViewWrapperGtk TabContentsViewType; + typedef ChromeWebContentsViewGtkDelegate TabContentsViewType; #endif ConstrainedWindowGtk(TabContentsWrapper* wrapper, |