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

Unified Diff: ui/views/controls/scrollbar/overlay_scroll_bar.h

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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: ui/views/controls/scrollbar/overlay_scroll_bar.h
diff --git a/ui/views/controls/scrollbar/overlay_scroll_bar.h b/ui/views/controls/scrollbar/overlay_scroll_bar.h
deleted file mode 100644
index 20cb75538b0f3c80bb0a80157bdc92b7f6c339f1..0000000000000000000000000000000000000000
--- a/ui/views/controls/scrollbar/overlay_scroll_bar.h
+++ /dev/null
@@ -1,42 +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 UI_VIEWS_CONTROLS_SCROLLBAR_OVERLAY_SCROLL_BAR_H_
-#define UI_VIEWS_CONTROLS_SCROLLBAR_OVERLAY_SCROLL_BAR_H_
-
-#include "ui/gfx/animation/slide_animation.h"
-#include "ui/views/controls/scrollbar/base_scroll_bar.h"
-
-namespace views {
-
-// The transparent scrollbar which overlays its contents.
-class VIEWS_EXPORT OverlayScrollBar : public BaseScrollBar {
- public:
- explicit OverlayScrollBar(bool horizontal);
- virtual ~OverlayScrollBar();
-
- protected:
- // BaseScrollBar overrides:
- virtual gfx::Rect GetTrackBounds() const override;
- virtual void OnGestureEvent(ui::GestureEvent* event) override;
-
- // ScrollBar overrides:
- virtual int GetLayoutSize() const override;
- virtual int GetContentOverlapSize() const override;
- virtual void OnMouseEnteredScrollView(const ui::MouseEvent& event) override;
- virtual void OnMouseExitedScrollView(const ui::MouseEvent& event) override;
-
- // View overrides:
- virtual gfx::Size GetPreferredSize() const override;
- virtual void Layout() override;
- virtual void OnPaint(gfx::Canvas* canvas) override;
-
- private:
- gfx::SlideAnimation animation_;
- DISALLOW_COPY_AND_ASSIGN(OverlayScrollBar);
-};
-
-} // namespace views
-
-#endif // UI_VIEWS_CONTROLS_SCROLLBAR_OVERLAY_SCROLL_BAR_H_
« no previous file with comments | « ui/views/controls/scrollbar/native_scroll_bar_wrapper.h ('k') | ui/views/controls/scrollbar/overlay_scroll_bar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698