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

Unified Diff: ash/common/shelf/shelf_tooltip_manager.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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
« no previous file with comments | « ash/common/shelf/shelf_model_unittest.cc ('k') | ash/common/shelf/shelf_tooltip_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/shelf/shelf_tooltip_manager.h
diff --git a/ash/common/shelf/shelf_tooltip_manager.h b/ash/common/shelf/shelf_tooltip_manager.h
deleted file mode 100644
index c68a1b075de0c93b7f7a61b5ed8d37b595f8e4fc..0000000000000000000000000000000000000000
--- a/ash/common/shelf/shelf_tooltip_manager.h
+++ /dev/null
@@ -1,90 +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_COMMON_SHELF_SHELF_TOOLTIP_MANAGER_H_
-#define ASH_COMMON_SHELF_SHELF_TOOLTIP_MANAGER_H_
-
-#include "ash/ash_export.h"
-#include "ash/common/shelf/wm_shelf_observer.h"
-#include "base/macros.h"
-#include "base/memory/weak_ptr.h"
-#include "base/timer/timer.h"
-#include "ui/events/event_handler.h"
-#include "ui/views/pointer_watcher.h"
-
-namespace views {
-class BubbleDialogDelegateView;
-class View;
-}
-
-namespace ash {
-class ShelfView;
-
-namespace test {
-class ShelfTooltipManagerTest;
-class ShelfViewTest;
-}
-
-// ShelfTooltipManager manages the tooltip bubble that appears for shelf items.
-class ASH_EXPORT ShelfTooltipManager : public ui::EventHandler,
- public views::PointerWatcher,
- public WmShelfObserver {
- public:
- explicit ShelfTooltipManager(ShelfView* shelf_view);
- ~ShelfTooltipManager() override;
-
- // Initializes the tooltip manager once the shelf is shown.
- void Init();
-
- // Closes the tooltip.
- void Close();
-
- // Returns true if the tooltip is currently visible.
- bool IsVisible() const;
-
- // Returns the view to which the tooltip bubble is anchored. May be null.
- views::View* GetCurrentAnchorView() const;
-
- // Show the tooltip bubble for the specified view.
- void ShowTooltip(views::View* view);
- void ShowTooltipWithDelay(views::View* view);
-
- // Set the timer delay in ms for testing.
- void set_timer_delay_for_test(int timer_delay) { timer_delay_ = timer_delay; }
-
- protected:
- // ui::EventHandler overrides:
- void OnMouseEvent(ui::MouseEvent* event) override;
-
- // views::PointerWatcher overrides:
- void OnPointerEventObserved(const ui::PointerEvent& event,
- const gfx::Point& location_in_screen,
- views::Widget* target) override;
-
- // WmShelfObserver overrides:
- void WillChangeVisibilityState(ShelfVisibilityState new_state) override;
- void OnAutoHideStateChanged(ShelfAutoHideState new_state) override;
-
- private:
- class ShelfTooltipBubble;
- friend class test::ShelfViewTest;
- friend class test::ShelfTooltipManagerTest;
-
- // A helper function to check for shelf visibility and view validity.
- bool ShouldShowTooltipForView(views::View* view);
-
- int timer_delay_;
- base::OneShotTimer timer_;
-
- ShelfView* shelf_view_;
- views::BubbleDialogDelegateView* bubble_;
-
- base::WeakPtrFactory<ShelfTooltipManager> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(ShelfTooltipManager);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SHELF_SHELF_TOOLTIP_MANAGER_H_
« no previous file with comments | « ash/common/shelf/shelf_model_unittest.cc ('k') | ash/common/shelf/shelf_tooltip_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698