Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2433)

Unified Diff: content/test/browser_test_base.h

Issue 10825254: Remove views::KeyEvent, replacing uses of it with ui::KeyEvent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/test/browser_test_base.h
===================================================================
--- content/test/browser_test_base.h (revision 150588)
+++ content/test/browser_test_base.h (working copy)
@@ -6,11 +6,20 @@
#define CONTENT_TEST_BROWSER_TEST_BASE_H_
#include "base/compiler_specific.h"
+#include "base/message_loop.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "net/test/test_server.h"
class CommandLine;
+#if defined(USE_AURA)
+namespace aura {
+namespace test {
+class AuraTestHelper;
+}
+}
+#endif
+
class BrowserTestBase : public testing::Test {
public:
BrowserTestBase();
@@ -73,6 +82,11 @@
// Testing server, started on demand.
scoped_ptr<net::TestServer> test_server_;
+
+#if defined(USE_AURA)
+ MessageLoopForUI ui_loop_;
+ scoped_ptr<aura::test::AuraTestHelper> aura_test_helper_;
+#endif
};
#endif // CONTENT_TEST_BROWSER_TEST_BASE_H_

Powered by Google App Engine
This is Rietveld 408576698