| 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 SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ | 5 #ifndef SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ |
| 6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ | 6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ |
| 7 | 7 |
| 8 namespace gfx { | |
| 9 class Size; | |
| 10 } | |
| 11 | |
| 12 namespace ui { | 8 namespace ui { |
| 13 | 9 |
| 14 class Event; | 10 class Event; |
| 15 | 11 |
| 16 namespace ws { | 12 namespace ws { |
| 17 | 13 |
| 18 class ServerWindow; | 14 class ServerWindow; |
| 19 | 15 |
| 20 // PlatformDisplayDelegate is implemented by an object that manages the | 16 // PlatformDisplayDelegate is implemented by an object that manages the |
| 21 // lifetime of a PlatformDisplay, forwards events to the appropriate windows, | 17 // lifetime of a PlatformDisplay, forwards events to the appropriate windows, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 38 | 34 |
| 39 protected: | 35 protected: |
| 40 virtual ~PlatformDisplayDelegate() {} | 36 virtual ~PlatformDisplayDelegate() {} |
| 41 }; | 37 }; |
| 42 | 38 |
| 43 } // namespace ws | 39 } // namespace ws |
| 44 | 40 |
| 45 } // namespace ui | 41 } // namespace ui |
| 46 | 42 |
| 47 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ | 43 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ |
| OLD | NEW |