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

Unified Diff: cc/layers/painted_overlay_scrollbar_layer.h

Issue 2591863003: Use nine-patch resource for drawing Aura overlay scrollbar thumb. (Closed)
Patch Set: Move CheckGeometryLimitations back to where it used to be (AppendQuads) 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 | « cc/layers/nine_patch_layer_impl.cc ('k') | cc/layers/painted_overlay_scrollbar_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/painted_overlay_scrollbar_layer.h
diff --git a/cc/layers/painted_overlay_scrollbar_layer.h b/cc/layers/painted_overlay_scrollbar_layer.h
new file mode 100644
index 0000000000000000000000000000000000000000..6888bec7ce6217d53f59b744d5d6ffe6bafafa9d
--- /dev/null
+++ b/cc/layers/painted_overlay_scrollbar_layer.h
@@ -0,0 +1,77 @@
+// Copyright 2016 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 CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_H_
+#define CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_H_
+
+#include "base/macros.h"
+#include "cc/base/cc_export.h"
+#include "cc/input/scrollbar.h"
+#include "cc/layers/layer.h"
+#include "cc/layers/scrollbar_layer_interface.h"
+#include "cc/layers/scrollbar_theme_painter.h"
+#include "cc/resources/scoped_ui_resource.h"
+
+namespace cc {
+
+class CC_EXPORT PaintedOverlayScrollbarLayer : public ScrollbarLayerInterface,
+ public Layer {
+ public:
+ std::unique_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
+
+ static scoped_refptr<PaintedOverlayScrollbarLayer> Create(
+ std::unique_ptr<Scrollbar> scrollbar,
+ int scroll_layer_id);
+
+ bool OpacityCanAnimateOnImplThread() const override;
+ bool AlwaysUseActiveTreeOpacity() const override;
+ ScrollbarLayerInterface* ToScrollbarLayer() override;
+
+ // ScrollbarLayerInterface
+ int ScrollLayerId() const override;
+ void SetScrollLayer(int layer_id) override;
+ ScrollbarOrientation orientation() const override;
+
+ // Layer interface
+ bool Update() override;
+ void SetLayerTreeHost(LayerTreeHost* host) override;
+ void PushPropertiesTo(LayerImpl* layer) override;
+
+ protected:
+ PaintedOverlayScrollbarLayer(std::unique_ptr<Scrollbar> scrollbar,
+ int scroll_layer_id);
+ ~PaintedOverlayScrollbarLayer() override;
+
+ private:
+ gfx::Rect OriginThumbRectForPainting() const;
+
+ template <typename T>
+ bool UpdateProperty(T value, T* prop) {
+ if (*prop == value)
+ return false;
+ *prop = value;
+ SetNeedsPushProperties();
+ return true;
+ }
+
+ bool PaintThumbIfNeeded();
+
+ std::unique_ptr<Scrollbar> scrollbar_;
+ int scroll_layer_id_;
+
+ int thumb_thickness_;
+ int thumb_length_;
+ gfx::Point location_;
+ gfx::Rect track_rect_;
+
+ gfx::Rect aperture_;
+
+ std::unique_ptr<ScopedUIResource> thumb_resource_;
+
+ DISALLOW_COPY_AND_ASSIGN(PaintedOverlayScrollbarLayer);
+};
+
+} // namespace cc
+
+#endif // CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_H_
« no previous file with comments | « cc/layers/nine_patch_layer_impl.cc ('k') | cc/layers/painted_overlay_scrollbar_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698