| 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_OBSERVER_H_ | 5 #ifndef COMPONENTS_MUS_WS_SERVER_WINDOW_OBSERVER_H_ |
| 6 #define COMPONENTS_MUS_WS_SERVER_WINDOW_OBSERVER_H_ | 6 #define COMPONENTS_MUS_WS_SERVER_WINDOW_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 10 #include "components/mus/public/interfaces/mus_constants.mojom.h" | 12 #include "components/mus/public/interfaces/mus_constants.mojom.h" |
| 11 | 13 |
| 12 namespace gfx { | 14 namespace gfx { |
| 13 class Insets; | 15 class Insets; |
| 14 class Rect; | 16 class Rect; |
| 15 } | 17 } |
| 16 | 18 |
| 17 namespace ui { | 19 namespace ui { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 82 |
| 81 protected: | 83 protected: |
| 82 virtual ~ServerWindowObserver() {} | 84 virtual ~ServerWindowObserver() {} |
| 83 }; | 85 }; |
| 84 | 86 |
| 85 } // namespace ws | 87 } // namespace ws |
| 86 | 88 |
| 87 } // namespace mus | 89 } // namespace mus |
| 88 | 90 |
| 89 #endif // COMPONENTS_MUS_WS_SERVER_WINDOW_OBSERVER_H_ | 91 #endif // COMPONENTS_MUS_WS_SERVER_WINDOW_OBSERVER_H_ |
| OLD | NEW |