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_ROOT_WINDOW_DELEGATE_H_ |
| 6 #define ASH_ROOT_WINDOW_DELEGATE_H_ |
| 7 |
| 8 #include "ash/ash_export.h" |
| 9 #include "ui/aura/root_window_delegate.h" |
| 10 |
| 11 namespace ash { |
| 12 |
| 13 // Implementation of aura::RootWindowDelegate. |
| 14 class ASH_EXPORT RootWindowDelegate : public aura::RootWindowDelegate { |
| 15 public: |
| 16 virtual ~RootWindowDelegate() {} |
| 17 |
| 18 // Creates a new aura::RootWindowDelegate. The caller owns the returned |
| 19 // value. |
| 20 static aura::RootWindowDelegate* Create(); |
| 21 |
| 22 protected: |
| 23 RootWindowDelegate() {} |
| 24 }; |
| 25 |
| 26 } // namespace ash |
| 27 |
| 28 #endif // ASH_ROOT_WINDOW_DELEGATE_H_ |
OLD | NEW |