Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
82 lines
2.0 KiB
C++
82 lines
2.0 KiB
C++
// This file is part of Desktop App Toolkit,
|
|
// a set of libraries for developing nice desktop applications.
|
|
//
|
|
// For license and copyright information please follow this link:
|
|
// https://github.com/desktop-app/legal/blob/master/LEGAL
|
|
//
|
|
#include "webview/platform/win/webview_win.h"
|
|
|
|
#include "base/random.h"
|
|
#include "base/platform/base_platform_info.h"
|
|
#include "webview/platform/win/webview_windows_edge_chromium.h"
|
|
#include "webview/platform/win/webview_windows_edge_html.h"
|
|
|
|
#include <QtGui/QWindow>
|
|
|
|
namespace Webview {
|
|
namespace {
|
|
|
|
[[nodiscard]] bool SystemTooOld() {
|
|
return !Platform::IsWindows8Point1OrGreater();
|
|
}
|
|
|
|
} // namespace
|
|
|
|
base::unique_qptr<QWindow> MakeFramelessWindow() {
|
|
auto result = base::make_unique_q<QWindow>();
|
|
result->setFlag(Qt::FramelessWindowHint);
|
|
return result;
|
|
}
|
|
|
|
Available Availability() {
|
|
if (SystemTooOld()) {
|
|
return Available{
|
|
.error = Available::Error::OldWindows,
|
|
.details = "Please update your system to Windows 8.1 or later.",
|
|
};
|
|
} else if (EdgeChromium::Supported()) {
|
|
return Available{
|
|
.customSchemeRequests = true,
|
|
.customRangeRequests = true,
|
|
.customReferer = true,
|
|
};
|
|
} else if (EdgeHtml::Supported()) {
|
|
return Available{};
|
|
}
|
|
return Available{
|
|
.error = Available::Error::NoWebview2,
|
|
.details = "Please install Microsoft Edge Webview2 Runtime.",
|
|
};
|
|
}
|
|
|
|
bool SupportsEmbedAfterCreate() {
|
|
return !SystemTooOld()
|
|
&& !EdgeChromium::Supported()
|
|
&& EdgeHtml::Supported();
|
|
}
|
|
|
|
bool SeparateStorageIdSupported() {
|
|
return !SystemTooOld() && EdgeChromium::Supported();
|
|
}
|
|
|
|
std::unique_ptr<Interface> CreateInstance(Config config) {
|
|
if (SystemTooOld()) {
|
|
return nullptr;
|
|
} else if (auto result = EdgeChromium::CreateInstance(config)) {
|
|
return result;
|
|
}
|
|
return EdgeHtml::CreateInstance(config);
|
|
}
|
|
|
|
std::string GenerateStorageToken() {
|
|
constexpr auto kSize = 16;
|
|
auto result = std::string(kSize, ' ');
|
|
base::RandomFill(result.data(), result.size());
|
|
return result;
|
|
}
|
|
|
|
void ClearStorageDataByToken(const std::string &token) {
|
|
}
|
|
|
|
} // namespace Webview
|