| Index: ash/shelf/shelf_bezel_event_handler.h
|
| diff --git a/ash/shelf/shelf_bezel_event_handler.h b/ash/shelf/shelf_bezel_event_handler.h
|
| index e46550e307a44878d657794fcfe9d46cae1e9702..ea3b0a8f6b72ab33abd715fc8991a7fb835d5502 100644
|
| --- a/ash/shelf/shelf_bezel_event_handler.h
|
| +++ b/ash/shelf/shelf_bezel_event_handler.h
|
| @@ -14,12 +14,12 @@ class Rect;
|
| }
|
|
|
| namespace ash {
|
| -class WmShelf;
|
| +class Shelf;
|
|
|
| // Forwards touch gestures on a bezel sensor to the shelf.
|
| class ShelfBezelEventHandler : public ui::EventHandler {
|
| public:
|
| - explicit ShelfBezelEventHandler(WmShelf* shelf);
|
| + explicit ShelfBezelEventHandler(Shelf* shelf);
|
| ~ShelfBezelEventHandler() override;
|
|
|
| // Overridden from ui::EventHandler:
|
| @@ -28,7 +28,7 @@ class ShelfBezelEventHandler : public ui::EventHandler {
|
| private:
|
| bool IsShelfOnBezel(const gfx::Rect& screen, const gfx::Point& point) const;
|
|
|
| - WmShelf* shelf_;
|
| + Shelf* shelf_;
|
| bool in_touch_drag_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ShelfBezelEventHandler);
|
|
|