1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// 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 "chrome/browser/extensions/chrome_extension_host_delegate.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_tab_util.h"
#include "chrome/browser/media/media_capture_devices_dispatcher.h"
#include "chrome/browser/ui/app_modal_dialogs/javascript_dialog_manager.h"
#include "chrome/browser/ui/prefs/prefs_tab_helper.h"
#include "extensions/browser/extension_host.h"
#include "extensions/browser/extension_system.h"
// TODO(thestig): Remove #ifdefs when extensions is disabled on mobile.
#if defined(ENABLE_EXTENSIONS)
#include "chrome/browser/extensions/chrome_extension_web_contents_observer.h"
#endif
namespace extensions {
ChromeExtensionHostDelegate::ChromeExtensionHostDelegate() {}
ChromeExtensionHostDelegate::~ChromeExtensionHostDelegate() {}
void ChromeExtensionHostDelegate::OnExtensionHostCreated(
content::WebContents* web_contents) {
#if defined(ENABLE_EXTENSIONS)
ChromeExtensionWebContentsObserver::CreateForWebContents(web_contents);
#endif
PrefsTabHelper::CreateForWebContents(web_contents);
}
void ChromeExtensionHostDelegate::OnRenderViewCreatedForBackgroundPage(
ExtensionHost* host) {
ExtensionService* service =
ExtensionSystem::Get(host->browser_context())->extension_service();
if (service)
service->DidCreateRenderViewForBackgroundPage(host);
}
content::JavaScriptDialogManager*
ChromeExtensionHostDelegate::GetJavaScriptDialogManager() {
return GetJavaScriptDialogManagerInstance();
}
void ChromeExtensionHostDelegate::CreateTab(content::WebContents* web_contents,
const std::string& extension_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture) {
ExtensionTabUtil::CreateTab(
web_contents, extension_id, disposition, initial_pos, user_gesture);
}
void ChromeExtensionHostDelegate::ProcessMediaAccessRequest(
content::WebContents* web_contents,
const content::MediaStreamRequest& request,
const content::MediaResponseCallback& callback,
const Extension* extension) {
MediaCaptureDevicesDispatcher::GetInstance()->ProcessMediaAccessRequest(
web_contents, request, callback, extension);
}
} // namespace extensions
|