Home
last modified time | relevance | path

Searched refs:CefBoxLayoutImpl (Results 1 – 4 of 4) sorted by relevance

/third_party/cef/libcef/browser/views/
Dbox_layout_impl.h14 class CefBoxLayoutImpl : public CefLayoutImpl<views::BoxLayout, CefBoxLayout> {
19 CefBoxLayoutImpl(const CefBoxLayoutImpl&) = delete;
20 CefBoxLayoutImpl& operator=(const CefBoxLayoutImpl&) = delete;
23 static CefRefPtr<CefBoxLayoutImpl> Create(
35 explicit CefBoxLayoutImpl(const CefBoxLayoutSettings& settings);
41 IMPLEMENT_REFCOUNTING_DELETE_ON_UIT(CefBoxLayoutImpl);
Dbox_layout_impl.cc11 CefRefPtr<CefBoxLayoutImpl> CefBoxLayoutImpl::Create( in Create()
15 CefRefPtr<CefBoxLayoutImpl> impl = new CefBoxLayoutImpl(settings); in Create()
20 void CefBoxLayoutImpl::SetFlexForView(CefRefPtr<CefView> view, int flex) { in SetFlexForView()
38 void CefBoxLayoutImpl::ClearFlexForView(CefRefPtr<CefView> view) { in ClearFlexForView()
52 CefBoxLayoutImpl::CefBoxLayoutImpl(const CefBoxLayoutSettings& settings) in CefBoxLayoutImpl() function in CefBoxLayoutImpl
55 views::BoxLayout* CefBoxLayoutImpl::CreateLayout() { in CreateLayout()
Dlayout_adapter.cc14 adapter = static_cast<CefBoxLayoutImpl*>(layout->AsBoxLayout().get()); in GetFor()
Dpanel_impl.h99 return CefBoxLayoutImpl::Create(settings, ParentClass::content_view()); in SetToBoxLayout()