| 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 UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ | 5 #ifndef UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ |
| 6 #define UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ | 6 #define UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "base/macros.h" | 13 #include "base/macros.h" |
| 12 #include "components/mus/public/cpp/input_event_handler.h" | 14 #include "components/mus/public/cpp/input_event_handler.h" |
| 13 #include "components/mus/public/cpp/window_observer.h" | 15 #include "components/mus/public/cpp/window_observer.h" |
| 14 #include "ui/platform_window/platform_window.h" | 16 #include "ui/platform_window/platform_window.h" |
| 15 #include "ui/views/mus/mus_export.h" | 17 #include "ui/views/mus/mus_export.h" |
| 16 | 18 |
| 17 namespace views { | 19 namespace views { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 81 |
| 80 // True if OnWindowDestroyed() has been received. | 82 // True if OnWindowDestroyed() has been received. |
| 81 bool mus_window_destroyed_; | 83 bool mus_window_destroyed_; |
| 82 | 84 |
| 83 DISALLOW_COPY_AND_ASSIGN(PlatformWindowMus); | 85 DISALLOW_COPY_AND_ASSIGN(PlatformWindowMus); |
| 84 }; | 86 }; |
| 85 | 87 |
| 86 } // namespace views | 88 } // namespace views |
| 87 | 89 |
| 88 #endif // UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ | 90 #endif // UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ |
| OLD | NEW |