Support onvoiceschanged for extension-based tts engines.
[chromium-blink-merge.git] / android_webview / browser / jni_dependency_factory.h
blob983ef2ac18e5b273b17324f8236bbedc01a55fba
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_
6 #define ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_
8 #include "base/memory/ref_counted.h"
10 namespace content {
11 class ExternalVideoSurfaceContainer;
12 class WebContents;
13 class WebContentsViewDelegate;
14 } // namespace content
16 namespace android_webview {
18 class AwBrowserContext;
19 class AwQuotaManagerBridge;
20 class AwWebPreferencesPopulater;
22 // Used to create instances of objects under native that are used in browser.
23 class JniDependencyFactory {
24 public:
25 virtual ~JniDependencyFactory() {}
27 virtual scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge(
28 AwBrowserContext* browser_context) = 0;
29 virtual content::WebContentsViewDelegate* CreateViewDelegate(
30 content::WebContents* web_contents) = 0;
31 virtual AwWebPreferencesPopulater* CreateWebPreferencesPopulater() = 0;
32 #if defined(VIDEO_HOLE)
33 virtual content::ExternalVideoSurfaceContainer*
34 CreateExternalVideoSurfaceContainer(content::WebContents* contents) = 0;
35 #endif
38 } // namespace android_webview
40 #endif // ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_