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

Unified Diff: ash/key_event_watcher.h

Issue 2734733002: Revert "chromeos: Move files in //ash/common to //ash, part 3" (Closed)
Patch Set: Created 3 years, 9 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 | « ash/ime_control_delegate.h ('k') | ash/key_event_watcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/key_event_watcher.h
diff --git a/ash/key_event_watcher.h b/ash/key_event_watcher.h
deleted file mode 100644
index 5c23a740df1ab3ba33c22b94c60055eef47b3471..0000000000000000000000000000000000000000
--- a/ash/key_event_watcher.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2016 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_KEY_EVENT_WATCHER_H_
-#define ASH_KEY_EVENT_WATCHER_H_
-
-#include <map>
-
-#include "ash/ash_export.h"
-#include "base/callback.h"
-#include "base/macros.h"
-#include "ui/base/accelerators/accelerator.h"
-
-namespace ui {
-class KeyEvent;
-}
-
-namespace ash {
-
-// This class watches the key event given in the form of accelerator
-// and calls the registered callback.
-class ASH_EXPORT KeyEventWatcher {
- public:
- using KeyEventCallback = base::Callback<void(const ui::KeyEvent&)>;
-
- KeyEventWatcher();
- virtual ~KeyEventWatcher();
-
- // Add a callback that is called when the accelerator |accel| is
- // matched. The key event will be consumed if a matching accelerator
- // is found.
- void AddKeyEventCallback(const ui::Accelerator& accel,
- const KeyEventCallback& callback);
-
- protected:
- // Finds and calls the registered callback whose accelerator matches
- // the |event|. Returns false if no accelerator is matched.
- bool HandleKeyEvent(const ui::KeyEvent& event);
-
- private:
- std::map<ui::Accelerator, KeyEventCallback> callback_map_;
-
- DISALLOW_COPY_AND_ASSIGN(KeyEventWatcher);
-};
-
-} // namespace ash
-
-#endif // ASH_KEY_EVENT_WATCHER_H_
« no previous file with comments | « ash/ime_control_delegate.h ('k') | ash/key_event_watcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698