// Copyright 2016 The Chromium Embedded Framework Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be found // in the LICENSE file. #include "libcef/browser/views/basic_panel_impl.h" #include "libcef/browser/views/basic_panel_view.h" // static CefRefPtr CefPanel::CreatePanel( CefRefPtr delegate) { return CefBasicPanelImpl::Create(delegate); } // static CefRefPtr CefBasicPanelImpl::Create( CefRefPtr delegate) { CEF_REQUIRE_UIT_RETURN(nullptr); CefRefPtr panel = new CefBasicPanelImpl(delegate); panel->Initialize(); return panel; } CefBasicPanelImpl::CefBasicPanelImpl(CefRefPtr delegate) : ParentClass(delegate) {} views::View* CefBasicPanelImpl::CreateRootView() { return new CefBasicPanelView(delegate()); } void CefBasicPanelImpl::InitializeRootView() { static_cast(root_view())->Initialize(); }