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

Unified Diff: athena/input/public/input_manager.h

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « athena/input/public/accelerator_manager.h ('k') | athena/main/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/input/public/input_manager.h
diff --git a/athena/input/public/input_manager.h b/athena/input/public/input_manager.h
deleted file mode 100644
index cd71681b2e9964f97c2345a7b696dec8fc4a8c4d..0000000000000000000000000000000000000000
--- a/athena/input/public/input_manager.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// 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_INPUT_PUBLIC_INPUT_MANAGER_H_
-#define ATHENA_INPUT_PUBLIC_INPUT_MANAGER_H_
-
-#include "athena/athena_export.h"
-
-namespace aura {
-class Window;
-}
-
-namespace ui {
-class EventTarget;
-}
-
-namespace athena {
-class AcceleratorManager;
-
-class PowerButtonObserver {
- public:
- enum State {
- PRESSED,
- LONG_PRESSED,
- RELEASED,
- };
- virtual ~PowerButtonObserver() {}
- virtual void OnPowerButtonStateChanged(State state) = 0;
-};
-
-class ATHENA_EXPORT InputManager {
- public:
- // Creates and deletes the singleton object of the InputManager
- // implementation.
- static InputManager* Create();
- static InputManager* Get();
- static void Shutdown();
-
- // TODO(oshima): Fix the initialization process and replace this
- // with EnvObserver::WindowInitialized
- virtual void OnRootWindowCreated(aura::Window* root_window) = 0;
-
- // Add/remove power button observer.
- virtual void AddPowerButtonObserver(PowerButtonObserver* observer) = 0;
- virtual void RemovePowerButtonObserver(PowerButtonObserver* observer) = 0;
-
- virtual ui::EventTarget* GetTopmostEventTarget() = 0;
- virtual AcceleratorManager* GetAcceleratorManager() = 0;
-
- virtual ~InputManager() {}
-};
-
-} // namespace athena
-
-#endif // ATHENA_INPUT_PUBLIC_INPUT_MANAGER_H_
« no previous file with comments | « athena/input/public/accelerator_manager.h ('k') | athena/main/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698