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

Side by Side Diff: ui/views/mus/mus_client_test_observer.h

Issue 2633233003: aura-mus: Implement stacking in DesktopWindowTreeHostMus. (Closed)
Patch Set: Add access policy for CanStackAtTop. Created 3 years, 11 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698