2024-04-26 21:21:33 +02:00
|
|
|
// Copyright 2024 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.
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2024-04-30 17:45:07 +02:00
|
|
|
#include "cef/libcef/browser/download_manager_delegate.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2024-04-30 17:45:07 +02:00
|
|
|
#include "cef/libcef/browser/download_manager_delegate_impl.h"
|
2022-01-25 20:40:24 +01:00
|
|
|
|
2024-04-26 21:21:33 +02:00
|
|
|
namespace cef {
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2024-04-26 21:21:33 +02:00
|
|
|
// static
|
|
|
|
std::unique_ptr<cef::DownloadManagerDelegate> DownloadManagerDelegate::Create(
|
|
|
|
content::DownloadManager* download_manager) {
|
|
|
|
return std::make_unique<CefDownloadManagerDelegateImpl>(
|
|
|
|
download_manager, /*alloy_bootstrap=*/false);
|
2012-06-28 19:21:18 +02:00
|
|
|
}
|
|
|
|
|
2024-04-26 21:21:33 +02:00
|
|
|
} // namespace cef
|