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

Unified Diff: ash/shelf/shelf_bezel_event_handler.h

Issue 2899253002: chromeos: Rename ash::WmShelf to Shelf (Closed)
Patch Set: cleanup Created 3 years, 7 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/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);

Powered by Google App Engine
This is Rietveld 408576698