2024-04-26 15:21:33 -04: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 01:34:16 +00:00
|
|
|
|
2024-04-30 11:45:07 -04:00
|
|
|
#include "cef/libcef/browser/download_manager_delegate.h"
|
2012-04-03 01:34:16 +00:00
|
|
|
|
2024-04-30 11:45:07 -04:00
|
|
|
#include "cef/libcef/browser/download_manager_delegate_impl.h"
|
2022-01-25 14:40:24 -05:00
|
|
|
|
2024-04-26 15:21:33 -04:00
|
|
|
namespace cef {
|
2012-04-03 01:34:16 +00:00
|
|
|
|
2024-04-26 15:21:33 -04: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 17:21:18 +00:00
|
|
|
}
|
|
|
|
|
2024-04-26 15:21:33 -04:00
|
|
|
} // namespace cef
|