diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 21:11:57 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 21:11:57 +0000 |
commit | 38b098f226b6b64fcdebcd16100bfe45fad0e57e (patch) | |
tree | 6fb5e5c84ae151149c9c3a09943c2eb745b13b37 /chrome/browser/ui/gtk/constrained_window_gtk.h | |
parent | 85d43f0ef0787ec7b076d11648ec30da0dd37f7f (diff) | |
download | chromium_src-38b098f226b6b64fcdebcd16100bfe45fad0e57e.zip chromium_src-38b098f226b6b64fcdebcd16100bfe45fad0e57e.tar.gz chromium_src-38b098f226b6b64fcdebcd16100bfe45fad0e57e.tar.bz2 |
Move creation of content TabContentsViews to content so that we can hide these headers through DEPS and avoid any more includes until TabContentsViewsViews is removed. I also moved all the TCVXDelegate to be in one header, that way we can more conveniently ask the embedder for a delegate without a lot of ifdefs.
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/9700023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126730 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 33646c0..67d915b 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 ChromeWebContentsViewGtkDelegate; +class ChromeWebContentsViewDelegateGtk; #endif class ConstrainedWindowGtkDelegate { @@ -52,7 +52,7 @@ class ConstrainedWindowGtk : public ConstrainedWindow { #if defined(TOOLKIT_VIEWS) typedef NativeTabContentsViewGtk TabContentsViewType; #else - typedef ChromeWebContentsViewGtkDelegate TabContentsViewType; + typedef ChromeWebContentsViewDelegateGtk TabContentsViewType; #endif ConstrainedWindowGtk(TabContentsWrapper* wrapper, |