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

Side by Side Diff: ui/views/test/views_test_helper_aura.h

Issue 679233002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « ui/views/test/views_test_base.h ('k') | ui/views/test/widget_test.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef UI_VIEWS_TEST_VIEWS_TEST_HELPER_AURA_H_ 5 #ifndef UI_VIEWS_TEST_VIEWS_TEST_HELPER_AURA_H_
6 #define UI_VIEWS_TEST_VIEWS_TEST_HELPER_AURA_H_ 6 #define UI_VIEWS_TEST_VIEWS_TEST_HELPER_AURA_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 12 matching lines...) Expand all
23 namespace wm { 23 namespace wm {
24 class WMState; 24 class WMState;
25 } 25 }
26 26
27 namespace views { 27 namespace views {
28 28
29 class ViewsTestHelperAura : public ViewsTestHelper { 29 class ViewsTestHelperAura : public ViewsTestHelper {
30 public: 30 public:
31 ViewsTestHelperAura(base::MessageLoopForUI* message_loop, 31 ViewsTestHelperAura(base::MessageLoopForUI* message_loop,
32 ui::ContextFactory* context_factory); 32 ui::ContextFactory* context_factory);
33 virtual ~ViewsTestHelperAura(); 33 ~ViewsTestHelperAura() override;
34 34
35 // Overridden from ViewsTestHelper: 35 // Overridden from ViewsTestHelper:
36 virtual void SetUp() override; 36 void SetUp() override;
37 virtual void TearDown() override; 37 void TearDown() override;
38 virtual gfx::NativeWindow GetContext() override; 38 gfx::NativeWindow GetContext() override;
39 39
40 private: 40 private:
41 ui::ContextFactory* context_factory_; 41 ui::ContextFactory* context_factory_;
42 scoped_ptr<aura::test::AuraTestHelper> aura_test_helper_; 42 scoped_ptr<aura::test::AuraTestHelper> aura_test_helper_;
43 scoped_ptr<wm::WMState> wm_state_; 43 scoped_ptr<wm::WMState> wm_state_;
44 44
45 DISALLOW_COPY_AND_ASSIGN(ViewsTestHelperAura); 45 DISALLOW_COPY_AND_ASSIGN(ViewsTestHelperAura);
46 }; 46 };
47 47
48 } // namespace views 48 } // namespace views
49 49
50 #endif // UI_VIEWS_TEST_VIEWS_TEST_HELPER_AURA_H_ 50 #endif // UI_VIEWS_TEST_VIEWS_TEST_HELPER_AURA_H_
OLDNEW
« no previous file with comments | « ui/views/test/views_test_base.h ('k') | ui/views/test/widget_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698