Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: athena/input/public/input_manager.h

Issue 305873002: InputManager/AcceleratorManager for athena (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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 ATHENA_INPUT_PUBLIC_INPUT_MANAGER_H_
6 #define ATHENA_INPUT_PUBLIC_INPUT_MANAGER_H_
7
8 #include "athena/athena_export.h"
9
10 namespace aura {
11 class Window;
12 }
13
14 namespace ui {
15 class Accelerator;
16 class EventTarget;
17 }
18
19 namespace athena {
20 class AcceleratorManager;
21
22 class ATHENA_EXPORT InputManager {
23 public:
24 // Creates and deletes the singleton object of the HomeCard
25 // implementation.
26 static InputManager* Create();
27 static InputManager* Get();
28 static void Shutdown();
29
30 // TODO(oshima): Fix the initialization process and replace this
31 // with EnvObserver::WindowInitialized
32 virtual void OnRootWindowCreated(aura::Window* root_window) = 0;
33
34 virtual ui::EventTarget* GetToplevelEventTarget() = 0;
35 virtual AcceleratorManager* GetAcceleratorManager() = 0;
36
37 virtual ~InputManager() {}
38 };
39
40 } // namespace athena
41
42 #endif // ATHENA_INPUT_PUBLIC_INPUT_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698