diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 21:00:32 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 21:00:32 +0000 |
commit | 91846402ed527c2c947dc476a7b36c992ea1c144 (patch) | |
tree | e0fe1a6510a51f0c296602b7732258001269de7d /ui/views/views_delegate.h | |
parent | bdab1c04ca6f6bd94ca86d6caa810ca58edc7713 (diff) | |
download | chromium_src-91846402ed527c2c947dc476a7b36c992ea1c144.zip chromium_src-91846402ed527c2c947dc476a7b36c992ea1c144.tar.gz chromium_src-91846402ed527c2c947dc476a7b36c992ea1c144.tar.bz2 |
Revert 132856 - Aura/ash split: Remove hacks and get chrome linking without ash.
views_unittests failure on Linux Chromeos.
For the first time now, you can do:
> build/gyp_chromium -Duse_aura=1 -Duse_ash=0
And get a running chrome. It has lots of issues, especially related to
window placement, tab handling, etc, but it pops up and renders web content.
Also consolidates most of the desktop behavior into its own class.
Also makes views_examples_exe work again. Several of the hacks are no longer
needed after Ben's refactoring to support WebView.
BUG=116458,119759
TEST=none
Review URL: http://codereview.chromium.org/10081022
TBR=erg@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10083057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132864 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/views_delegate.h')
-rw-r--r-- | ui/views/views_delegate.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/ui/views/views_delegate.h b/ui/views/views_delegate.h index d1fc739..af9c665 100644 --- a/ui/views/views_delegate.h +++ b/ui/views/views_delegate.h @@ -31,11 +31,6 @@ class NonClientFrameView; class View; class Widget; -#if defined(USE_AURA) -class NativeWidgetAura; -class NativeWidgetHelperAura; -#endif - // ViewsDelegate is an interface implemented by an object using the views // framework. It is used to obtain various high level application utilities // and perform some actions such as window placement saving. @@ -101,13 +96,6 @@ class VIEWS_EXPORT ViewsDelegate { // Converts views::Event::flags to a WindowOpenDisposition. virtual int GetDispositionForEvent(int event_flags) = 0; - -#if defined(USE_AURA) - // Creates an object that implements desktop integration behavior. Returned - // object is owned by the NativeWidgetAura passed in. May return NULL. - virtual NativeWidgetHelperAura* CreateNativeWidgetHelper( - NativeWidgetAura* native_widget) = 0; -#endif }; } // namespace views |