suppress unaddr error at WebResourceService::StartFetch
[chromium-blink-merge.git] / android_webview / lib / main / aw_main_delegate.h
blob856d69926ff901c6e563f673452ab97fd3895668
1 // Copyright (c) 2012 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_LIB_MAIN_AW_MAIN_DELEGATE_H_
6 #define ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_
8 #include "android_webview/browser/jni_dependency_factory.h"
9 #include "android_webview/common/aw_content_client.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "content/public/app/content_main_delegate.h"
14 namespace content {
15 class BrowserMainRunner;
16 class ExternalVideoSurfaceContainel;
19 namespace android_webview {
21 class AwContentBrowserClient;
22 class AwContentRendererClient;
23 class GpuMemoryBufferFactoryImpl;
25 // Android WebView implementation of ContentMainDelegate.
26 class AwMainDelegate : public content::ContentMainDelegate,
27 public JniDependencyFactory {
28 public:
29 AwMainDelegate();
30 virtual ~AwMainDelegate();
32 private:
33 // content::ContentMainDelegate implementation:
34 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
35 virtual void PreSandboxStartup() OVERRIDE;
36 virtual void SandboxInitialized(const std::string& process_type) OVERRIDE;
37 virtual int RunProcess(
38 const std::string& process_type,
39 const content::MainFunctionParams& main_function_params) OVERRIDE;
40 virtual void ProcessExiting(const std::string& process_type) OVERRIDE;
41 virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE;
42 virtual content::ContentRendererClient*
43 CreateContentRendererClient() OVERRIDE;
45 // JniDependencyFactory implementation.
46 virtual scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge(
47 AwBrowserContext* browser_context) OVERRIDE;
48 virtual content::WebContentsViewDelegate* CreateViewDelegate(
49 content::WebContents* web_contents) OVERRIDE;
50 virtual AwWebPreferencesPopulater* CreateWebPreferencesPopulater() OVERRIDE;
51 #if defined(VIDEO_HOLE)
52 virtual content::ExternalVideoSurfaceContainer*
53 CreateExternalVideoSurfaceContainer(
54 content::WebContents* web_contents) OVERRIDE;
55 #endif
57 scoped_ptr<content::BrowserMainRunner> browser_runner_;
58 AwContentClient content_client_;
59 scoped_ptr<AwContentBrowserClient> content_browser_client_;
60 scoped_ptr<AwContentRendererClient> content_renderer_client_;
61 scoped_ptr<GpuMemoryBufferFactoryImpl> gpu_memory_buffer_factory_;
63 DISALLOW_COPY_AND_ASSIGN(AwMainDelegate);
66 } // namespace android_webview
68 #endif // ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_