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

Side by Side Diff: components/exo/test/exo_test_base.h

Issue 2493223002: Change exo::SurfaceFactoryOwner to exo::ExoCompositorFrameSink (Closed)
Patch Set: Addressed comments Created 4 years 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ 5 #ifndef COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_
6 #define COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ 6 #define COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "ash/test/ash_test_base.h" 10 #include "ash/test/ash_test_base.h"
(...skipping 12 matching lines...) Expand all
23 23
24 // Overridden from testing::Test: 24 // Overridden from testing::Test:
25 void SetUp() override; 25 void SetUp() override;
26 void TearDown() override; 26 void TearDown() override;
27 27
28 ExoTestHelper* exo_test_helper() { return exo_test_helper_.get(); } 28 ExoTestHelper* exo_test_helper() { return exo_test_helper_.get(); }
29 29
30 private: 30 private:
31 std::unique_ptr<ExoTestHelper> exo_test_helper_; 31 std::unique_ptr<ExoTestHelper> exo_test_helper_;
32 std::unique_ptr<WMHelper> wm_helper_; 32 std::unique_ptr<WMHelper> wm_helper_;
33 // base::MessageLoop loop_;
Fady Samuel 2016/11/23 15:39:02 nit: you don't need this right?
Alex Z. 2016/11/23 17:46:09 Done.
33 34
34 DISALLOW_COPY_AND_ASSIGN(ExoTestBase); 35 DISALLOW_COPY_AND_ASSIGN(ExoTestBase);
35 }; 36 };
36 37
37 } // namespace test 38 } // namespace test
38 } // namespace exo 39 } // namespace exo
39 40
40 #endif // COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ 41 #endif // COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698