/external/chromium_org/ui/views/controls/scrollbar/ |
scrollbar_unittest.cc | 51 NativeScrollBarTest() : widget_(NULL), scrollbar_(NULL) {} 57 ASSERT_FALSE(scrollbar_); 70 scrollbar_ = 72 scrollbar_->SetBounds(0, 0, 100, 100); 73 scrollbar_->Update(100, 200, 0); 75 track_size_ = scrollbar_->GetTrackBounds().width(); 90 BaseScrollBar* scrollbar_; member in class:views::NativeScrollBarTest 110 EXPECT_EQ(scrollbar_->GetPosition(), 0); 111 EXPECT_EQ(scrollbar_->GetMaxPosition(), 100); 112 EXPECT_EQ(scrollbar_->GetMinPosition(), 0) [all...] |
/external/chromium_org/webkit/renderer/compositor_bindings/ |
scrollbar_impl.cc | 19 : scrollbar_(scrollbar.Pass()), 26 if (scrollbar_->orientation() == WebScrollbar::Horizontal) 32 return scrollbar_->isLeftSideVerticalScrollbar(); 36 return geometry_->hasThumb(scrollbar_.get()); 40 return scrollbar_->isOverlay(); 44 return scrollbar_->location(); 48 gfx::Rect thumb_rect = geometry_->thumbRect(scrollbar_.get()); 49 if (scrollbar_->orientation() == WebScrollbar::Horizontal) 55 gfx::Rect thumb_rect = geometry_->thumbRect(scrollbar_.get()); 56 if (scrollbar_->orientation() == WebScrollbar::Horizontal [all...] |
scrollbar_impl.h | 41 scoped_ptr<blink::WebScrollbar> scrollbar_; member in class:webkit::ScrollbarImpl
|
/external/chromium_org/cc/layers/ |
painted_scrollbar_layer.cc | 26 tree_impl, id(), scrollbar_->Orientation()).PassAs<LayerImpl>(); 39 : scrollbar_(scrollbar.Pass()), 41 thumb_thickness_(scrollbar_->ThumbThickness()), 42 thumb_length_(scrollbar_->ThumbLength()), 43 is_overlay_(scrollbar_->IsOverlay()), 44 has_thumb_(scrollbar_->HasThumb()) { 45 if (!scrollbar_->IsOverlay()) 64 return scrollbar_->IsOverlay(); 68 return scrollbar_->Orientation(); 167 gfx::Size(scrollbar_->ThumbLength(), scrollbar_->ThumbThickness()) [all...] |
painted_scrollbar_layer.h | 81 scoped_ptr<Scrollbar> scrollbar_; member in class:cc::PaintedScrollbarLayer
|
/external/chromium_org/ppapi/tests/ |
test_scrollbar.cc | 20 scrollbar_(instance, true), 36 scrollbar_.SetLocation(location); 38 scrollbar_.SetDocumentSize(10000); 47 scrollbar_.HandleEvent(input_event); 59 if (scrollbar == scrollbar_)
|
test_scrollbar.h | 32 pp::Scrollbar_Dev scrollbar_; member in class:TestScrollbar
|
/external/chromium_org/content/renderer/pepper/ |
ppb_scrollbar_impl.cc | 59 scrollbar_.reset(WebPluginScrollbar::createForPlugin( 70 scrollbar_.reset(); 78 return scrollbar_->isOverlay(); 82 return scrollbar_->value(); 86 if (scrollbar_) 87 scrollbar_->setValue(value); 91 if (scrollbar_) 92 scrollbar_->setDocumentSize(size); 97 if (!scrollbar_) 111 if (!scrollbar_) [all...] |
ppb_scrollbar_impl.h | 66 scoped_ptr<blink::WebPluginScrollbar> scrollbar_; member in class:content::PPB_Scrollbar_Impl
|
/external/chromium_org/cc/trees/ |
layer_tree_host_unittest.cc | 400 scrollbar_ = FakePaintedScrollbarLayer::Create( 402 scrollbar_->SetPosition(gfx::Point(0, 10)); 403 scrollbar_->SetBounds(gfx::Size(10, 10)); 405 root_layer_->AddChild(scrollbar_); 424 // the content bounds of |scrollbar_|, which should not generate 436 scrollbar_->content_bounds().ToString()); 442 scoped_refptr<FakePaintedScrollbarLayer> scrollbar_; member in class:cc::__anon3948::LayerTreeHostTestNoExtraCommitFromScrollbarInvalidate 1548 scoped_refptr<FakePaintedScrollbarLayer> scrollbar_; member in class:cc::__anon3948::LayerTreeHostTestDirectRendererAtomicCommit [all...] |