Index: ash/root_window_delegate.h |
diff --git a/ash/root_window_delegate.h b/ash/root_window_delegate.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..03dd9ef49d38f52232c391adea6f117ce3a5c9ff |
--- /dev/null |
+++ b/ash/root_window_delegate.h |
@@ -0,0 +1,28 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef ASH_ROOT_WINDOW_DELEGATE_H_ |
+#define ASH_ROOT_WINDOW_DELEGATE_H_ |
+ |
+#include "ash/ash_export.h" |
+#include "ui/aura/root_window_delegate.h" |
+ |
+namespace ash { |
+ |
+// Implementation of aura::RootWindowDelegate. |
+class ASH_EXPORT RootWindowDelegate : public aura::RootWindowDelegate { |
+ public: |
+ virtual ~RootWindowDelegate() {} |
+ |
+ // Creates a new aura::RootWindowDelegate. The caller owns the returned |
+ // value. |
+ static aura::RootWindowDelegate* Create(); |
+ |
+ protected: |
+ RootWindowDelegate() {} |
+}; |
+ |
+} // namespace ash |
+ |
+#endif // ASH_ROOT_WINDOW_DELEGATE_H_ |