diff options
author | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-12 20:45:42 +0000 |
---|---|---|
committer | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-12 20:45:42 +0000 |
commit | 6e3920611d6243e2860235146baa11c49a49f668 (patch) | |
tree | 83c7e2ab038e1c188db04fd67a3183435699abbf /chrome/test/base/view_event_test_base.h | |
parent | 7777502f49133956840f42daac5b8a216284bfba (diff) | |
download | chromium_src-6e3920611d6243e2860235146baa11c49a49f668.zip chromium_src-6e3920611d6243e2860235146baa11c49a49f668.tar.gz chromium_src-6e3920611d6243e2860235146baa11c49a49f668.tar.bz2 |
Desktop aura: Start removing views::Widget::CreateWindow()
We have lots of code in chrome which just assumes that it can throw up a dialog
with no context. This will not work correctly in ash/aura combo builds. This is
part 1 of threading context through chrome so each dialog will be displayed
on the correct desktop, which is a subgoal of removing the global
StackingClient.
Widget::CreateWindow() and Widget::CreateWindowWithBounds() will be
transitioned to Widget::CreateWindowWithContext() and
Widget::CreateWindowWithContextAndBounds().
BUG=161882
Review URL: https://codereview.chromium.org/11519022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172650 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/base/view_event_test_base.h')
-rw-r--r-- | chrome/test/base/view_event_test_base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/base/view_event_test_base.h b/chrome/test/base/view_event_test_base.h index 4deab34..393e9bb 100644 --- a/chrome/test/base/view_event_test_base.h +++ b/chrome/test/base/view_event_test_base.h @@ -25,7 +25,7 @@ namespace aura { namespace test { -class TestStackingClient; +class AuraTestHelper; } } @@ -150,7 +150,7 @@ class ViewEventTestBase : public views::WidgetDelegate, #endif #if defined(USE_AURA) - scoped_ptr<aura::test::TestStackingClient> stacking_client_; + scoped_ptr<aura::test::AuraTestHelper> aura_test_helper_; #endif DISALLOW_COPY_AND_ASSIGN(ViewEventTestBase); |