2015-07-16 23:40:01 +02:00
|
|
|
// Copyright 2015 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright 2014 The Chromium 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/extensions/extensions_api_client.h"
|
|
|
|
|
2015-07-24 02:06:56 +02:00
|
|
|
#include "include/internal/cef_types_wrappers.h"
|
2019-03-22 23:11:51 +01:00
|
|
|
#include "libcef/browser/browser_context.h"
|
2017-09-11 20:42:30 +02:00
|
|
|
#include "libcef/browser/extensions/api/storage/sync_value_store_cache.h"
|
2015-07-24 02:06:56 +02:00
|
|
|
#include "libcef/browser/extensions/extension_web_contents_observer.h"
|
2015-07-16 23:40:01 +02:00
|
|
|
#include "libcef/browser/extensions/mime_handler_view_guest_delegate.h"
|
2015-07-24 02:06:56 +02:00
|
|
|
#include "libcef/browser/extensions/pdf_web_contents_helper_client.h"
|
|
|
|
#include "libcef/browser/printing/print_view_manager.h"
|
|
|
|
|
2016-05-25 01:35:43 +02:00
|
|
|
#include "base/memory/ptr_util.h"
|
2015-10-17 02:44:00 +02:00
|
|
|
#include "chrome/browser/ui/prefs/prefs_tab_helper.h"
|
2015-07-24 02:06:56 +02:00
|
|
|
#include "components/pdf/browser/pdf_web_contents_helper.h"
|
2016-07-20 20:03:38 +02:00
|
|
|
#include "components/zoom/zoom_controller.h"
|
2015-11-10 21:18:16 +01:00
|
|
|
#include "extensions/browser/guest_view/extensions_guest_view_manager_delegate.h"
|
2015-07-16 23:40:01 +02:00
|
|
|
|
|
|
|
namespace extensions {
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefExtensionsAPIClient::CefExtensionsAPIClient() {}
|
2015-07-16 23:40:01 +02:00
|
|
|
|
|
|
|
AppViewGuestDelegate* CefExtensionsAPIClient::CreateAppViewGuestDelegate()
|
|
|
|
const {
|
|
|
|
// TODO(extensions): Implement to support Apps.
|
|
|
|
NOTREACHED();
|
2020-01-15 14:36:24 +01:00
|
|
|
return nullptr;
|
2015-07-16 23:40:01 +02:00
|
|
|
}
|
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<guest_view::GuestViewManagerDelegate>
|
2015-11-10 21:18:16 +01:00
|
|
|
CefExtensionsAPIClient::CreateGuestViewManagerDelegate(
|
|
|
|
content::BrowserContext* context) const {
|
|
|
|
// The GuestViewManager instance associated with the returned Delegate, which
|
|
|
|
// will be retrieved in the future via GuestViewManager::FromBrowserContext,
|
2019-03-22 23:11:51 +01:00
|
|
|
// will be associated with the CefBrowserContext.
|
2020-07-01 02:57:00 +02:00
|
|
|
return base::WrapUnique(
|
|
|
|
new extensions::ExtensionsGuestViewManagerDelegate(context));
|
2015-11-10 21:18:16 +01:00
|
|
|
}
|
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<MimeHandlerViewGuestDelegate>
|
2015-07-16 23:40:01 +02:00
|
|
|
CefExtensionsAPIClient::CreateMimeHandlerViewGuestDelegate(
|
|
|
|
MimeHandlerViewGuest* guest) const {
|
2016-05-25 01:35:43 +02:00
|
|
|
return base::WrapUnique(new CefMimeHandlerViewGuestDelegate(guest));
|
2015-07-16 23:40:01 +02:00
|
|
|
}
|
|
|
|
|
2015-07-24 02:06:56 +02:00
|
|
|
void CefExtensionsAPIClient::AttachWebContentsHelpers(
|
|
|
|
content::WebContents* web_contents) const {
|
2015-10-17 02:44:00 +02:00
|
|
|
PrefsTabHelper::CreateForWebContents(web_contents);
|
2016-07-14 03:35:07 +02:00
|
|
|
printing::CefPrintViewManager::CreateForWebContents(web_contents);
|
2016-07-20 20:03:38 +02:00
|
|
|
|
|
|
|
CefExtensionWebContentsObserver::CreateForWebContents(web_contents);
|
|
|
|
|
|
|
|
// Used by the PDF extension.
|
2015-07-24 02:06:56 +02:00
|
|
|
pdf::PDFWebContentsHelper::CreateForWebContentsWithClient(
|
2017-05-17 11:29:28 +02:00
|
|
|
web_contents, std::unique_ptr<pdf::PDFWebContentsHelperClient>(
|
|
|
|
new CefPDFWebContentsHelperClient()));
|
2016-07-20 20:03:38 +02:00
|
|
|
|
|
|
|
// Used by the tabs extension API.
|
|
|
|
zoom::ZoomController::CreateForWebContents(web_contents);
|
2015-07-24 02:06:56 +02:00
|
|
|
}
|
|
|
|
|
2017-09-11 20:42:30 +02:00
|
|
|
void CefExtensionsAPIClient::AddAdditionalValueStoreCaches(
|
|
|
|
content::BrowserContext* context,
|
|
|
|
const scoped_refptr<ValueStoreFactory>& factory,
|
|
|
|
const scoped_refptr<base::ObserverListThreadSafe<SettingsObserver>>&
|
|
|
|
observers,
|
|
|
|
std::map<settings_namespace::Namespace, ValueStoreCache*>* caches) {
|
|
|
|
// Add support for chrome.storage.sync.
|
|
|
|
// Because we don't support syncing with Google, we follow the behavior of
|
|
|
|
// chrome.storage.sync as if Chrome were permanently offline, by using a local
|
|
|
|
// store see: https://developer.chrome.com/apps/storage for more information
|
|
|
|
(*caches)[settings_namespace::SYNC] = new cef::SyncValueStoreCache(factory);
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
} // namespace extensions
|