2015-11-17 19:20:13 +01:00
|
|
|
// Copyright 2015 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/browser_platform_delegate.h"
|
|
|
|
|
2016-01-06 20:20:54 +01:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "build/build_config.h"
|
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include "libcef/browser/native/browser_platform_delegate_native_win.h"
|
|
|
|
#include "libcef/browser/osr/browser_platform_delegate_osr_win.h"
|
|
|
|
#elif defined(OS_MACOSX)
|
|
|
|
#include "libcef/browser/native/browser_platform_delegate_native_mac.h"
|
|
|
|
#include "libcef/browser/osr/browser_platform_delegate_osr_mac.h"
|
|
|
|
#elif defined(OS_LINUX)
|
|
|
|
#include "libcef/browser/native/browser_platform_delegate_native_linux.h"
|
|
|
|
#include "libcef/browser/osr/browser_platform_delegate_osr_linux.h"
|
|
|
|
#else
|
|
|
|
#error A delegate implementation is not available for your platform.
|
|
|
|
#endif
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
#if defined(USE_AURA)
|
|
|
|
#include "libcef/browser/views/browser_platform_delegate_views.h"
|
|
|
|
#endif
|
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
namespace {
|
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> CreateNativeDelegate(
|
2015-11-17 19:20:13 +01:00
|
|
|
const CefWindowInfo& window_info) {
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
return make_scoped_ptr(new CefBrowserPlatformDelegateNativeWin(window_info));
|
|
|
|
#elif defined(OS_MACOSX)
|
|
|
|
return make_scoped_ptr(new CefBrowserPlatformDelegateNativeMac(window_info));
|
|
|
|
#elif defined(OS_LINUX)
|
|
|
|
return make_scoped_ptr(
|
|
|
|
new CefBrowserPlatformDelegateNativeLinux(window_info));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateOsr> CreateOSRDelegate(
|
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate) {
|
2015-11-17 19:20:13 +01:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
return make_scoped_ptr(
|
2016-01-06 20:20:54 +01:00
|
|
|
new CefBrowserPlatformDelegateOsrWin(std::move(native_delegate)));
|
2015-11-17 19:20:13 +01:00
|
|
|
#elif defined(OS_MACOSX)
|
|
|
|
return make_scoped_ptr(
|
2016-01-06 20:20:54 +01:00
|
|
|
new CefBrowserPlatformDelegateOsrMac(std::move(native_delegate)));
|
2015-11-17 19:20:13 +01:00
|
|
|
#elif defined(OS_LINUX)
|
|
|
|
return make_scoped_ptr(
|
2016-01-06 20:20:54 +01:00
|
|
|
new CefBrowserPlatformDelegateOsrLinux(std::move(native_delegate)));
|
2015-11-17 19:20:13 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// static
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegate> CefBrowserPlatformDelegate::Create(
|
2016-01-19 21:09:01 +01:00
|
|
|
CefBrowserHostImpl::CreateParams& create_params) {
|
|
|
|
if (create_params.window_info) {
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate =
|
2016-01-19 21:09:01 +01:00
|
|
|
CreateNativeDelegate(*create_params.window_info.get());
|
|
|
|
if (create_params.window_info->windowless_rendering_enabled &&
|
|
|
|
create_params.client &&
|
|
|
|
create_params.client->GetRenderHandler().get()) {
|
|
|
|
return CreateOSRDelegate(std::move(native_delegate));
|
|
|
|
}
|
|
|
|
return std::move(native_delegate);
|
2015-11-17 19:20:13 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
#if defined(USE_AURA)
|
|
|
|
else {
|
|
|
|
// CefWindowInfo is not used in this case.
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate =
|
2016-01-19 21:09:01 +01:00
|
|
|
CreateNativeDelegate(CefWindowInfo());
|
|
|
|
return make_scoped_ptr(new CefBrowserPlatformDelegateViews(
|
|
|
|
std::move(native_delegate),
|
|
|
|
static_cast<CefBrowserViewImpl*>(create_params.browser_view.get())));
|
|
|
|
}
|
|
|
|
#endif // defined(USE_AURA)
|
|
|
|
|
|
|
|
NOTREACHED();
|
|
|
|
return nullptr;
|
2015-11-17 19:20:13 +01:00
|
|
|
}
|