OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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 ASH_DISPLAY_DISPLAY_MANAGER_DELEGATE_H_ |
| 6 #define ASH_DISPLAY_DISPLAY_MANAGER_DELEGATE_H_ |
| 7 |
| 8 namespace aura { |
| 9 class RootWindowDelegate; |
| 10 } |
| 11 |
| 12 namespace ash { |
| 13 namespace internal { |
| 14 |
| 15 // Delegate of the DisplayManager. |
| 16 class DisplayManagerDelegate { |
| 17 public: |
| 18 virtual ~DisplayManagerDelegate() {} |
| 19 |
| 20 // Creates a new RootWindowDelegate. DisplayManager takes ownership |
| 21 // of the returned value. |
| 22 virtual aura::RootWindowDelegate* CreateRootWindowDelegate() = 0; |
| 23 }; |
| 24 |
| 25 } // namespace internal |
| 26 } // namespace ash |
| 27 |
| 28 #endif // ASH_DISPLAY_DISPLAY_MANAGER_DELEGATE_H_ |
OLD | NEW |