| Index: ash/keyboard_uma_event_filter.h
|
| diff --git a/ash/keyboard_uma_event_filter.h b/ash/keyboard_uma_event_filter.h
|
| deleted file mode 100644
|
| index 97dbe2bf784496cd6cb7eaef11ba39f8aed0b9db..0000000000000000000000000000000000000000
|
| --- a/ash/keyboard_uma_event_filter.h
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -// Copyright 2013 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_KEYBOARD_UMA_EVENT_FILTER_H_
|
| -#define ASH_KEYBOARD_UMA_EVENT_FILTER_H_
|
| -
|
| -#include "base/compiler_specific.h"
|
| -#include "base/macros.h"
|
| -#include "base/time/time.h"
|
| -#include "ui/events/event_handler.h"
|
| -
|
| -namespace ash {
|
| -
|
| -// EventFilter for tracking keyboard-related metrics, which intercepts events
|
| -// before they are processed by the usual path and logs metrics about the
|
| -// events.
|
| -class KeyboardUMAEventFilter : public ui::EventHandler {
|
| - public:
|
| - KeyboardUMAEventFilter();
|
| - ~KeyboardUMAEventFilter() override;
|
| -
|
| - // ui::EventHandler overrides:
|
| - void OnKeyEvent(ui::KeyEvent* event) override;
|
| -
|
| - private:
|
| - // The timestamp of the last character keystroke.
|
| - base::TimeTicks last_keystroke_time_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(KeyboardUMAEventFilter);
|
| -};
|
| -
|
| -} // namespace ash
|
| -
|
| -#endif // ASH_KEYBOARD_UMA_EVENT_FILTER_H_
|
|
|