Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Side by Side Diff: android_webview/lib/main/aw_main_delegate.h

Issue 831523004: Enable posting a message from JS to Android webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component builds Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_ 5 #ifndef ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_
6 #define ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_ 6 #define ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_
7 7
8 #include "android_webview/browser/jni_dependency_factory.h" 8 #include "android_webview/browser/jni_dependency_factory.h"
9 #include "android_webview/common/aw_content_client.h" 9 #include "android_webview/common/aw_content_client.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 12 matching lines...) Expand all
23 23
24 // Android WebView implementation of ContentMainDelegate. 24 // Android WebView implementation of ContentMainDelegate.
25 class AwMainDelegate : public content::ContentMainDelegate, 25 class AwMainDelegate : public content::ContentMainDelegate,
26 public JniDependencyFactory { 26 public JniDependencyFactory {
27 public: 27 public:
28 AwMainDelegate(); 28 AwMainDelegate();
29 virtual ~AwMainDelegate(); 29 virtual ~AwMainDelegate();
30 30
31 private: 31 private:
32 // content::ContentMainDelegate implementation: 32 // content::ContentMainDelegate implementation:
33 virtual bool BasicStartupComplete(int* exit_code) override; 33 bool BasicStartupComplete(int* exit_code) override;
34 virtual void PreSandboxStartup() override; 34 void PreSandboxStartup() override;
35 virtual void SandboxInitialized(const std::string& process_type) override; 35 void SandboxInitialized(const std::string& process_type) override;
36 virtual int RunProcess( 36 int RunProcess(
37 const std::string& process_type, 37 const std::string& process_type,
38 const content::MainFunctionParams& main_function_params) override; 38 const content::MainFunctionParams& main_function_params) override;
39 virtual void ProcessExiting(const std::string& process_type) override; 39 void ProcessExiting(const std::string& process_type) override;
40 virtual content::ContentBrowserClient* CreateContentBrowserClient() override; 40 content::ContentBrowserClient* CreateContentBrowserClient() override;
41 virtual content::ContentRendererClient* 41 content::ContentRendererClient* CreateContentRendererClient() override;
42 CreateContentRendererClient() override;
43 42
44 // JniDependencyFactory implementation. 43 // JniDependencyFactory implementation.
45 virtual scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge( 44 scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge(
46 AwBrowserContext* browser_context) override; 45 AwBrowserContext* browser_context) override;
47 virtual content::WebContentsViewDelegate* CreateViewDelegate( 46 content::WebContentsViewDelegate* CreateViewDelegate(
48 content::WebContents* web_contents) override; 47 content::WebContents* web_contents) override;
49 virtual AwWebPreferencesPopulater* CreateWebPreferencesPopulater() override; 48 AwWebPreferencesPopulater* CreateWebPreferencesPopulater() override;
49 AwMessagePortService* CreateAwMessagePortService() override;
50 #if defined(VIDEO_HOLE) 50 #if defined(VIDEO_HOLE)
51 virtual content::ExternalVideoSurfaceContainer* 51 virtual content::ExternalVideoSurfaceContainer*
52 CreateExternalVideoSurfaceContainer( 52 CreateExternalVideoSurfaceContainer(
53 content::WebContents* web_contents) override; 53 content::WebContents* web_contents) override;
54 #endif 54 #endif
55 55
56 scoped_ptr<content::BrowserMainRunner> browser_runner_; 56 scoped_ptr<content::BrowserMainRunner> browser_runner_;
57 AwContentClient content_client_; 57 AwContentClient content_client_;
58 scoped_ptr<AwContentBrowserClient> content_browser_client_; 58 scoped_ptr<AwContentBrowserClient> content_browser_client_;
59 scoped_ptr<AwContentRendererClient> content_renderer_client_; 59 scoped_ptr<AwContentRendererClient> content_renderer_client_;
60 60
61 DISALLOW_COPY_AND_ASSIGN(AwMainDelegate); 61 DISALLOW_COPY_AND_ASSIGN(AwMainDelegate);
62 }; 62 };
63 63
64 } // namespace android_webview 64 } // namespace android_webview
65 65
66 #endif // ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_ 66 #endif // ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698