HomeSort by relevance Sort by last modified time
    Searched defs:scrollbar_layer (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/cc/trees/
layer_tree_host_unittest_damage.cc 308 scoped_refptr<Layer> scrollbar_layer = variable
310 scrollbar_layer->SetPosition(gfx::Point(300, 300));
311 scrollbar_layer->SetBounds(gfx::Size(10, 100));
312 root_layer->AddChild(scrollbar_layer);
316 gfx::RectF scrollbar_rect(scrollbar_layer->position(),
317 scrollbar_layer->bounds());
tree_synchronizer.cc 14 #include "cc/layers/scrollbar_layer.h"
152 ScrollbarLayerType* scrollbar_layer = layer->ToScrollbarLayer(); local
153 if (!scrollbar_layer)
157 new_layers->find(scrollbar_layer->id());
161 iter = new_layers->find(scrollbar_layer->scroll_layer_id());
168 if (scrollbar_layer->Orientation() == HORIZONTAL)
  /external/chromium_org/cc/layers/
scrollbar_layer.cc 6 #include "cc/layers/scrollbar_layer.h"
105 ScrollbarLayerImpl* scrollbar_layer = static_cast<ScrollbarLayerImpl*>(layer); local
112 scrollbar_layer->SetThumbThickness(thickness_override);
115 scrollbar_layer->SetThumbThickness(bounds().height());
117 scrollbar_layer->SetThumbThickness(bounds().width());
120 scrollbar_layer->SetThumbThickness(thumb_thickness_);
122 scrollbar_layer->SetThumbLength(thumb_length_);
124 scrollbar_layer->SetTrackStart(track_rect_.x() - location_.x());
125 scrollbar_layer->SetTrackLength(track_rect_.width());
127 scrollbar_layer->SetTrackStart(track_rect_.y() - location_.y())
    [all...]
scrollbar_layer_impl.cc 64 ScrollbarLayerImpl* scrollbar_layer = static_cast<ScrollbarLayerImpl*>(layer); local
66 scrollbar_layer->SetThumbThickness(thumb_thickness_);
67 scrollbar_layer->SetThumbLength(thumb_length_);
68 scrollbar_layer->SetTrackStart(track_start_);
69 scrollbar_layer->SetTrackLength(track_length_);
70 scrollbar_layer->set_is_overlay_scrollbar(is_overlay_scrollbar_);
72 scrollbar_layer->set_track_resource_id(track_resource_id_);
73 scrollbar_layer->set_thumb_resource_id(thumb_resource_id_);
scrollbar_layer_unittest.cc 5 #include "cc/layers/scrollbar_layer.h"
111 scoped_refptr<Layer> scrollbar_layer = local
123 layer_tree_root->AddChild(scrollbar_layer);
425 scoped_refptr<Layer> scrollbar_layer = local
428 layer_tree_root->AddChild(scrollbar_layer);
435 scrollbar_layer->SetIsDrawable(true);
436 scrollbar_layer->SetBounds(gfx::Size(100, 100));
441 scrollbar_layer->draw_properties().content_bounds = gfx::Size(100, 200);
442 scrollbar_layer->draw_properties().visible_content_rect =
444 scrollbar_layer->CreateRenderSurface()
497 scoped_refptr<Layer> scrollbar_layer = local
    [all...]

Completed in 265 milliseconds