Home
last modified time | relevance | path

Searched refs:native_wrapper_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/ui/views/controls/scrollbar/
Dnative_scroll_bar.cc25 native_wrapper_(NULL) { in NativeScrollBar()
46 if (native_wrapper_) in GetPreferredSize()
47 return native_wrapper_->GetView()->GetPreferredSize(); in GetPreferredSize()
52 if (native_wrapper_) { in Layout()
53 native_wrapper_->GetView()->SetBounds(0, 0, width(), height()); in Layout()
54 native_wrapper_->GetView()->Layout(); in Layout()
60 if (details.is_add && !native_wrapper_ && GetWidget()) { in ViewHierarchyChanged()
61 native_wrapper_ = NativeScrollBarWrapper::CreateWrapper(this); in ViewHierarchyChanged()
62 AddChildView(native_wrapper_->GetView()); in ViewHierarchyChanged()
72 if (!native_wrapper_) in OnKeyPressed()
[all …]
Dnative_scroll_bar.h64 NativeScrollBarWrapper* native_wrapper_; variable
Dscrollbar_unittest.cc71 static_cast<NativeScrollBarViews*>(native_scrollbar_->native_wrapper_); in SetUp()
/external/chromium_org/ui/views/controls/native/
Dnative_view_host.cc41 native_wrapper_->AttachNativeView(); in Attach()
72 if (!native_view_ || !native_wrapper_.get()) in Layout()
83 native_wrapper_->InstallClip(x, y, vis_bounds.width(), in Layout()
85 } else if (native_wrapper_->HasInstalledClip()) { in Layout()
88 native_wrapper_->UninstallClip(); in Layout()
99 native_wrapper_->ShowWidget(local_bounds.x(), local_bounds.y(), in Layout()
103 native_wrapper_->HideWidget(); in Layout()
126 if (native_wrapper_->HasInstalledClip()) in OnPaint()
161 if (!native_wrapper_.get()) in ViewHierarchyChanged()
162 native_wrapper_.reset(NativeViewHostWrapper::CreateWrapper(this)); in ViewHierarchyChanged()
[all …]
Dnative_view_host_test_base.cc76 return host_->native_wrapper_.get(); in GetNativeWrapper()
Dnative_view_host.h114 scoped_ptr<NativeViewHostWrapper> native_wrapper_; variable