Index: ui/views/test/views_test_base.h |
diff --git a/ui/views/test/views_test_base.h b/ui/views/test/views_test_base.h |
index b59ffef18ab4dba983fa032fd2a6d79fba8f3988..456c07dd235dfd77bfc023c576617a3d6e174576 100644 |
--- a/ui/views/test/views_test_base.h |
+++ b/ui/views/test/views_test_base.h |
@@ -35,6 +35,10 @@ class ViewsTestBase : public testing::Test { |
void RunPendingMessages(); |
+ // Creates a widget of |type| with any platform specific data for use in |
+ // cross-platform tests. |
+ Widget::InitParams CreateParams(Widget::InitParams::Type type); |
+ |
protected: |
TestViewsDelegate& views_delegate() const { return *views_delegate_.get(); } |
@@ -44,10 +48,6 @@ class ViewsTestBase : public testing::Test { |
MessageLoop* message_loop() { return &message_loop_; } |
- // Creates a widget of |type| with any platform specific data for use in |
- // cross-platform tests. |
- Widget::InitParams CreateParams(Widget::InitParams::Type type); |
- |
// Returns a context view. In aura builds, this will be the |
// RootWindow. Everywhere else, NULL. |
gfx::NativeView GetContext(); |