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

Unified Diff: ash/common/accelerators/accelerator_router.h

Issue 2736573002: chromeos: Move files in //ash/common to //ash, part 2 (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
Index: ash/common/accelerators/accelerator_router.h
diff --git a/ash/common/accelerators/accelerator_router.h b/ash/common/accelerators/accelerator_router.h
deleted file mode 100644
index a849d5afa52d22e0911d32a8b1e91f364039baa3..0000000000000000000000000000000000000000
--- a/ash/common/accelerators/accelerator_router.h
+++ /dev/null
@@ -1,58 +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_ACCELERATORS_ACCELERATOR_ROUTER_H_
-#define ASH_ACCELERATORS_ACCELERATOR_ROUTER_H_
-
-#include "ash/ash_export.h"
-#include "base/macros.h"
-#include "base/time/time.h"
-
-namespace ui {
-class Accelerator;
-class KeyEvent;
-}
-
-namespace ash {
-
-class WmWindow;
-
-// AcceleratorRouter does a minimal amount of processing before routing the
-// accelerator to the AcceleratorController. AcceleratorRouter may also decide
-// not to process certain accelerators.
-class ASH_EXPORT AcceleratorRouter {
- public:
- AcceleratorRouter();
- ~AcceleratorRouter();
-
- // Returns true if event should be consumed. |target| is the target of the
- // event.
- bool ProcessAccelerator(WmWindow* target,
- const ui::KeyEvent& event,
- const ui::Accelerator& accelerator);
-
- private:
- // Returns true if the window should be allowed a chance to handle
- // system keys.
- bool CanConsumeSystemKeys(WmWindow* target, const ui::KeyEvent& event);
-
- // Returns true if the |accelerator| should be processed now.
- bool ShouldProcessAcceleratorNow(WmWindow* target,
- const ui::KeyEvent& event,
- const ui::Accelerator& accelerator);
-
- // Records a histogram on how long the "Search" key is held when a user
- // presses an accelerator that involes the "Search" key.
- void RecordSearchKeyStats(const ui::Accelerator& accelerator);
-
- enum SearchKeyState { RELEASED = 0, PRESSED, RECORDED };
- SearchKeyState search_key_state_ = RELEASED;
- base::TimeTicks search_key_pressed_timestamp_;
-
- DISALLOW_COPY_AND_ASSIGN(AcceleratorRouter);
-};
-
-} // namespace ash
-
-#endif // ASH_ACCELERATORS_ACCELERATOR_ROUTER_H_
« no previous file with comments | « ash/common/accelerators/accelerator_controller_delegate.h ('k') | ash/common/accelerators/accelerator_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698