| OLD | NEW |
| 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 14 matching lines...) Expand all Loading... |
| 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 ~AwMainDelegate() override; | 29 ~AwMainDelegate() override; |
| 30 | 30 |
| 31 private: | 31 private: |
| 32 // content::ContentMainDelegate implementation: | 32 // content::ContentMainDelegate implementation: |
| 33 bool BasicStartupComplete(int* exit_code) override; | 33 bool BasicStartupComplete(int* exit_code) override; |
| 34 void PreSandboxStartup() override; | 34 void PreSandboxStartup() override; |
| 35 void SandboxInitialized(const std::string& process_type) override; | |
| 36 int RunProcess( | 35 int RunProcess( |
| 37 const std::string& process_type, | 36 const std::string& process_type, |
| 38 const content::MainFunctionParams& main_function_params) override; | 37 const content::MainFunctionParams& main_function_params) override; |
| 39 void ProcessExiting(const std::string& process_type) override; | 38 void ProcessExiting(const std::string& process_type) override; |
| 40 content::ContentBrowserClient* CreateContentBrowserClient() override; | 39 content::ContentBrowserClient* CreateContentBrowserClient() override; |
| 41 content::ContentRendererClient* CreateContentRendererClient() override; | 40 content::ContentRendererClient* CreateContentRendererClient() override; |
| 42 | 41 |
| 43 // JniDependencyFactory implementation. | 42 // JniDependencyFactory implementation. |
| 44 scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge( | 43 scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge( |
| 45 AwBrowserContext* browser_context) override; | 44 AwBrowserContext* browser_context) override; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 57 AwContentClient content_client_; | 56 AwContentClient content_client_; |
| 58 scoped_ptr<AwContentBrowserClient> content_browser_client_; | 57 scoped_ptr<AwContentBrowserClient> content_browser_client_; |
| 59 scoped_ptr<AwContentRendererClient> content_renderer_client_; | 58 scoped_ptr<AwContentRendererClient> content_renderer_client_; |
| 60 | 59 |
| 61 DISALLOW_COPY_AND_ASSIGN(AwMainDelegate); | 60 DISALLOW_COPY_AND_ASSIGN(AwMainDelegate); |
| 62 }; | 61 }; |
| 63 | 62 |
| 64 } // namespace android_webview | 63 } // namespace android_webview |
| 65 | 64 |
| 66 #endif // ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_ | 65 #endif // ANDROID_WEBVIEW_LIB_MAIN_AW_MAIN_DELEGATE_H_ |
| OLD | NEW |