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

Side by Side Diff: ui/aura/test/aura_test_base.h

Issue 2657283003: mash: make Env::last_mouse_location() accurate for Mus (Closed)
Patch Set: fix test Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_AURA_TEST_AURA_TEST_BASE_H_ 5 #ifndef UI_AURA_TEST_AURA_TEST_BASE_H_
6 #define UI_AURA_TEST_AURA_TEST_BASE_H_ 6 #define UI_AURA_TEST_AURA_TEST_BASE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 154
155 // AuraTestBase: 155 // AuraTestBase:
156 void SetUp() override; 156 void SetUp() override;
157 157
158 private: 158 private:
159 bool setup_called_ = false; 159 bool setup_called_ = false;
160 160
161 DISALLOW_COPY_AND_ASSIGN(AuraTestBaseWithType); 161 DISALLOW_COPY_AND_ASSIGN(AuraTestBaseWithType);
162 }; 162 };
163 163
164 class AuraTestBaseMus : public AuraTestBase {
165 public:
166 AuraTestBaseMus();
167 ~AuraTestBaseMus() override;
168
169 // AuraTestBase:
170 void SetUp() override;
171
172 private:
173 DISALLOW_COPY_AND_ASSIGN(AuraTestBaseMus);
174 };
175
164 } // namespace test 176 } // namespace test
165 } // namespace aura 177 } // namespace aura
166 178
167 #endif // UI_AURA_TEST_AURA_TEST_BASE_H_ 179 #endif // UI_AURA_TEST_AURA_TEST_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698