| Index: ash/display/mouse_cursor_event_filter.h
|
| diff --git a/ash/monitor/mouse_cursor_event_filter.h b/ash/display/mouse_cursor_event_filter.h
|
| similarity index 81%
|
| rename from ash/monitor/mouse_cursor_event_filter.h
|
| rename to ash/display/mouse_cursor_event_filter.h
|
| index 682547af3d74f8246a06949358cdc39cdc8ed9cf..a89a6b758b4154f20b47b1752c920cd36e08346e 100644
|
| --- a/ash/monitor/mouse_cursor_event_filter.h
|
| +++ b/ash/display/mouse_cursor_event_filter.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef ASH_MONITOR_MOUSE_CURSOR_EVENT_FILTER_H
|
| -#define ASH_MONITOR_MOUSE_CURSOR_EVENT_FILTER_H
|
| +#ifndef ASH_DISPLAY_MOUSE_CURSOR_EVENT_FILTER_H
|
| +#define ASH_DISPLAY_MOUSE_CURSOR_EVENT_FILTER_H
|
| #pragma once
|
|
|
| #include "ash/ash_export.h"
|
| @@ -12,13 +12,13 @@
|
|
|
| namespace ash {
|
| namespace internal {
|
| -class MonitorController;
|
| +class DisplayController;
|
|
|
| // An event filter that controls mouse location in extended desktop
|
| // environment.
|
| class ASH_EXPORT MouseCursorEventFilter : public aura::EventFilter {
|
| public:
|
| - MouseCursorEventFilter(MonitorController* monitor_controller);
|
| + MouseCursorEventFilter(DisplayController* display_controller);
|
| virtual ~MouseCursorEventFilter();
|
|
|
| // Overridden from aura::EventFilter:
|
| @@ -33,7 +33,7 @@ class ASH_EXPORT MouseCursorEventFilter : public aura::EventFilter {
|
| aura::GestureEvent* event) OVERRIDE;
|
|
|
| private:
|
| - MonitorController* monitor_controller_;
|
| + DisplayController* display_controller_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(MouseCursorEventFilter);
|
| };
|
| @@ -41,4 +41,4 @@ class ASH_EXPORT MouseCursorEventFilter : public aura::EventFilter {
|
| } // namespace internal
|
| } // namespace ash
|
|
|
| -#endif // ASH_MONITOR_MOUSE_CURSOR_EVENT_FILTER_H
|
| +#endif // ASH_DISPLAY_MOUSE_CURSOR_EVENT_FILTER_H
|
|
|