Index: athena/virtual_keyboard/public/virtual_keyboard_manager.h |
diff --git a/athena/virtual_keyboard/public/virtual_keyboard_manager.h b/athena/virtual_keyboard/public/virtual_keyboard_manager.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6a0551f4ec8bb4bcaed786ffb2ca89d2c419b9f2 |
--- /dev/null |
+++ b/athena/virtual_keyboard/public/virtual_keyboard_manager.h |
@@ -0,0 +1,30 @@ |
+// Copyright 2014 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 ATHENA_VIRTUAL_KEYBOARD_PUBLIC_VIRTUAL_KEYBOARD_MANAGER_H_ |
+#define ATHENA_VIRTUAL_KEYBOARD_PUBLIC_VIRTUAL_KEYBOARD_MANAGER_H_ |
+ |
+#include "athena/athena_export.h" |
+ |
+namespace aura { |
+class Window; |
+} |
+ |
+namespace content { |
+class BrowserContext; |
+} |
+ |
+namespace athena { |
+ |
+class ATHENA_EXPORT VirtualKeyboardManager { |
+ public: |
+ static VirtualKeyboardManager* Create(aura::Window* root, |
+ content::BrowserContext* context); |
+ static VirtualKeyboardManager* Get(); |
+ static void Shutdown(); |
+}; |
+ |
+} // namespace athena |
+ |
+#endif // ATHENA_VIRTUAL_KEYBOARD_PUBLIC_VIRTUAL_KEYBOARD_MANAGER_H_ |