| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/views/test/views_test_base.h" | 5 #include "ui/views/test/views_test_base.h" |
| 6 | 6 |
| 7 #if defined(OS_WIN) | 7 #if defined(OS_WIN) |
| 8 #include <ole2.h> | 8 #include <ole2.h> |
| 9 #endif | 9 #endif |
| 10 | 10 |
| 11 #if defined(USE_AURA) | 11 #if defined(USE_AURA) |
| 12 #include "ui/aura/root_window.h" | 12 #include "ui/aura/root_window.h" |
| 13 #include "ui/aura/test/test_activation_client.h" | |
| 14 #include "ui/aura/test/test_stacking_client.h" | 13 #include "ui/aura/test/test_stacking_client.h" |
| 15 #endif | 14 #endif |
| 16 | 15 |
| 17 namespace views { | 16 namespace views { |
| 18 | 17 |
| 19 ViewsTestBase::ViewsTestBase() | 18 ViewsTestBase::ViewsTestBase() |
| 20 : setup_called_(false), | 19 : setup_called_(false), |
| 21 teardown_called_(false) { | 20 teardown_called_(false) { |
| 22 #if defined(OS_WIN) | 21 #if defined(OS_WIN) |
| 23 OleInitialize(NULL); | 22 OleInitialize(NULL); |
| 24 #endif | 23 #endif |
| 25 #if defined(USE_AURA) | 24 #if defined(USE_AURA) |
| 26 test_activation_client_.reset(new aura::test::TestActivationClient); | |
| 27 new aura::test::TestStackingClient; | 25 new aura::test::TestStackingClient; |
| 28 #endif | 26 #endif |
| 29 } | 27 } |
| 30 | 28 |
| 31 ViewsTestBase::~ViewsTestBase() { | 29 ViewsTestBase::~ViewsTestBase() { |
| 32 #if defined(OS_WIN) | 30 #if defined(OS_WIN) |
| 33 OleUninitialize(); | 31 OleUninitialize(); |
| 34 #endif | 32 #endif |
| 35 CHECK(setup_called_) | 33 CHECK(setup_called_) |
| 36 << "You have overridden SetUp but never called super class's SetUp"; | 34 << "You have overridden SetUp but never called super class's SetUp"; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 57 void ViewsTestBase::RunPendingMessages() { | 55 void ViewsTestBase::RunPendingMessages() { |
| 58 #if defined(USE_AURA) | 56 #if defined(USE_AURA) |
| 59 message_loop_.RunAllPendingWithDispatcher( | 57 message_loop_.RunAllPendingWithDispatcher( |
| 60 aura::RootWindow::GetInstance()->GetDispatcher()); | 58 aura::RootWindow::GetInstance()->GetDispatcher()); |
| 61 #else | 59 #else |
| 62 message_loop_.RunAllPending(); | 60 message_loop_.RunAllPending(); |
| 63 #endif | 61 #endif |
| 64 } | 62 } |
| 65 | 63 |
| 66 } // namespace views | 64 } // namespace views |
| OLD | NEW |