/external/chromium_org/content/renderer/compositor_bindings/ |
scrollbar_impl.cc | 19 : scrollbar_(scrollbar.Pass()), 28 if (scrollbar_->orientation() == WebScrollbar::Horizontal) 34 return scrollbar_->isLeftSideVerticalScrollbar(); 38 return geometry_->hasThumb(scrollbar_.get()); 42 return scrollbar_->isOverlay(); 46 return scrollbar_->location(); 50 gfx::Rect thumb_rect = geometry_->thumbRect(scrollbar_.get()); 51 if (scrollbar_->orientation() == WebScrollbar::Horizontal) 57 gfx::Rect thumb_rect = geometry_->thumbRect(scrollbar_.get()); 58 if (scrollbar_->orientation() == WebScrollbar::Horizontal [all...] |
scrollbar_impl.h | 41 scoped_ptr<blink::WebScrollbar> scrollbar_; member in class:content::ScrollbarImpl
|
/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/cc/layers/ |
painted_scrollbar_layer.cc | 26 tree_impl, id(), scrollbar_->Orientation()).PassAs<LayerImpl>(); 38 : 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()) 72 return scrollbar_->IsOverlay(); 76 return scrollbar_->Orientation(); 187 gfx::Size(scrollbar_->ThumbLength(), scrollbar_->ThumbThickness()) [all...] |
painted_scrollbar_layer.h | 85 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); 48 scrollbar_.HandleEvent(input_event); 60 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 | 54 scrollbar_.reset(WebPluginScrollbar::createForPlugin( 62 void PPB_Scrollbar_Impl::InstanceWasDeleted() { scrollbar_.reset(); } 68 bool PPB_Scrollbar_Impl::IsOverlay() { return scrollbar_->isOverlay(); } 70 uint32_t PPB_Scrollbar_Impl::GetValue() { return scrollbar_->value(); } 73 if (scrollbar_) 74 scrollbar_->setValue(value); 78 if (scrollbar_) 79 scrollbar_->setDocumentSize(size); 84 if (!scrollbar_) 99 if (!scrollbar_) [all...] |
ppb_scrollbar_impl.h | 66 scoped_ptr<blink::WebPluginScrollbar> scrollbar_; member in class:content::PPB_Scrollbar_Impl
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
timeline_graph_view.js | 59 this.scrollbar_ = new HorizontalScrollbarView(scrollbarId, 63 superClass.call(this, null, new DivView(divId), this.scrollbar_); 162 return this.scrollbar_.getPosition() == this.scrollbar_.getRange(); 177 if (this.scrollbar_.getPosition() > scrollbarRange) 180 this.scrollbar_.setRange(scrollbarRange); 182 this.scrollbar_.setPosition(scrollbarRange); 222 var newPosition = this.scrollbar_.getPosition() + Math.round(delta); 226 } else if (newPosition > this.scrollbar_.getRange()) { 227 newPosition = this.scrollbar_.getRange() [all...] |
/external/chromium_org/content/browser/resources/media/ |
timeline_graph_view.js | 36 this.scrollbar_ = {position_: 0, range_: 0}; 75 return this.scrollbar_.position_ == this.scrollbar_.range_; 90 if (this.scrollbar_.position_ > scrollbarRange) 93 this.scrollbar_.range_ = scrollbarRange; 95 this.scrollbar_.position_ = scrollbarRange; 184 var position = this.scrollbar_.position_; 187 if (this.scrollbar_.range_ == 0)
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ |
file_grid.js | 46 self.scrollBar_ = new MainPanelScrollBar(); 47 self.scrollBar_.initialize(self.parentNode, self); 253 this.scrollBar_.setBottomMarginForPanel(margin);
|
directory_tree.js | 527 this.scrollBar_ = MainPanelScrollBar(); 528 this.scrollBar_.initialize(this.parentNode, this); 652 this.scrollBar_.setBottomMarginForPanel(margin);
|
file_table.js | 300 self.scrollBar_ = MainPanelScrollBar(); 301 self.scrollBar_.initialize(self, self.list); 730 this.scrollBar_.setBottomMarginForPanel(margin);
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
tile_page.js | 410 // onScroll handler). |scrollbar_| is only aesthetic, and it only 413 this.scrollbar_ = this.ownerDocument.createElement('div'); 414 this.scrollbar_.className = 'tile-page-scrollbar'; 415 this.scrollbar_.hidden = true; 416 this.appendChild(this.scrollbar_); 499 return this.scrollbar_.hidden ? 0 : 13; [all...] |
/external/chromium_org/cc/trees/ |
layer_tree_host_unittest.cc | 397 scrollbar_ = FakePaintedScrollbarLayer::Create( 399 scrollbar_->SetPosition(gfx::Point(0, 10)); 400 scrollbar_->SetBounds(gfx::Size(10, 10)); 402 root_layer_->AddChild(scrollbar_); 419 // the content bounds of |scrollbar_|, which should not generate 431 scrollbar_->content_bounds().ToString()); 437 scoped_refptr<FakePaintedScrollbarLayer> scrollbar_; member in class:cc::__anon7384::LayerTreeHostTestNoExtraCommitFromScrollbarInvalidate 1280 scoped_refptr<FakePaintedScrollbarLayer> scrollbar_; member in class:cc::__anon7384::LayerTreeHostTestDirectRendererAtomicCommit [all...] |
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/ |
navigation_list.js | 201 this.scrollBar_ = new ScrollBar(); 202 this.scrollBar_.initialize(this.parentNode, this);
|