Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_VIEWS_MUS_MUS_CLIENT_TEST_OBSERVER_H_ | |
|
sky
2017/01/20 16:36:10
Can you put this in ui/aura/mus; WindowTreeClientT
Elliot Glaysher
2017/01/20 22:31:02
Done.
| |
| 6 #define UI_VIEWS_MUS_MUS_CLIENT_TEST_OBSERVER_H_ | |
| 7 | |
| 8 #include "ui/views/mus/mus_export.h" | |
| 9 | |
| 10 namespace views { | |
| 11 namespace test { | |
| 12 | |
| 13 // Testing interface for MusClient internals. | |
| 14 class VIEWS_MUS_EXPORT MusClientTestObserver { | |
| 15 public: | |
| 16 virtual void OnChangeCompleted(aura::ChangeType type, bool success) = 0; | |
| 17 | |
| 18 protected: | |
| 19 virtual ~MusClientTestObserver() {} | |
| 20 }; | |
| 21 | |
| 22 } // namespace test | |
| 23 } // namespace views | |
| 24 | |
| 25 #endif // UI_VIEWS_MUS_MUS_CLIENT_TEST_OBSERVER_H_ | |
| OLD | NEW |