OLD | NEW |
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_MUS_WS_SERVER_WINDOW_DRAWN_TRACKER_OBSERVER_H_ | 5 #ifndef SERVICES_UI_WS_SERVER_WINDOW_DRAWN_TRACKER_OBSERVER_H_ |
6 #define COMPONENTS_MUS_WS_SERVER_WINDOW_DRAWN_TRACKER_OBSERVER_H_ | 6 #define SERVICES_UI_WS_SERVER_WINDOW_DRAWN_TRACKER_OBSERVER_H_ |
7 | 7 |
8 namespace mus { | 8 namespace mus { |
9 | 9 |
10 namespace ws { | 10 namespace ws { |
11 | 11 |
12 class ServerWindow; | 12 class ServerWindow; |
13 | 13 |
14 class ServerWindowDrawnTrackerObserver { | 14 class ServerWindowDrawnTrackerObserver { |
15 public: | 15 public: |
16 // Invoked right before the drawn state changes. If |is_drawn| is false, | 16 // Invoked right before the drawn state changes. If |is_drawn| is false, |
(...skipping 14 matching lines...) Expand all Loading... |
31 bool is_drawn) {} | 31 bool is_drawn) {} |
32 | 32 |
33 protected: | 33 protected: |
34 virtual ~ServerWindowDrawnTrackerObserver() {} | 34 virtual ~ServerWindowDrawnTrackerObserver() {} |
35 }; | 35 }; |
36 | 36 |
37 } // namespace ws | 37 } // namespace ws |
38 | 38 |
39 } // namespace mus | 39 } // namespace mus |
40 | 40 |
41 #endif // COMPONENTS_MUS_WS_SERVER_WINDOW_DRAWN_TRACKER_OBSERVER_H_ | 41 #endif // SERVICES_UI_WS_SERVER_WINDOW_DRAWN_TRACKER_OBSERVER_H_ |
OLD | NEW |