summaryrefslogtreecommitdiffstats
path: root/cc/layers/scrollbar_layer_impl_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/layers/scrollbar_layer_impl_base.h')
-rw-r--r--cc/layers/scrollbar_layer_impl_base.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/layers/scrollbar_layer_impl_base.h b/cc/layers/scrollbar_layer_impl_base.h
index e7a2fc7..435943d 100644
--- a/cc/layers/scrollbar_layer_impl_base.h
+++ b/cc/layers/scrollbar_layer_impl_base.h
@@ -19,13 +19,13 @@ class CC_EXPORT ScrollbarLayerImplBase : public LayerImpl {
int ScrollLayerId() const {
return scroll_layer_ ? scroll_layer_->id() : Layer::INVALID_ID;
}
- void ClearScrollLayer() { scroll_layer_ = NULL; }
- void SetScrollLayerById(int id);
int ClipLayerId() const {
return clip_layer_ ? clip_layer_->id() : Layer::INVALID_ID;
}
+
+ void SetScrollLayerAndClipLayerByIds(int scroll_layer_id, int clip_layer_id);
+ void ClearScrollLayer() { scroll_layer_ = NULL; }
void ClearClipLayer() { clip_layer_ = NULL; }
- void SetClipLayerById(int id);
float current_pos() const { return current_pos_; }
void SetCurrentPos(float current_pos);