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

Unified Diff: android_webview/lib/main/aw_main_delegate.cc

Issue 2888173003: [WebView] Remove jni_dependency_factory.h (Closed)
Patch Set: add explicit Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « android_webview/lib/main/aw_main_delegate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/lib/main/aw_main_delegate.cc
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc
index 9f2f848e49a4bbe758693039228011d706694f76..004d9ad944779dfa496c437caf1f5269a292af05 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -8,9 +8,7 @@
#include "android_webview/browser/aw_content_browser_client.h"
#include "android_webview/browser/aw_media_url_interceptor.h"
-#include "android_webview/browser/aw_quota_manager_bridge_impl.h"
#include "android_webview/browser/aw_safe_browsing_config_helper.h"
-#include "android_webview/browser/aw_web_contents_view_delegate.h"
#include "android_webview/browser/browser_view_renderer.h"
#include "android_webview/browser/command_line_helper.h"
#include "android_webview/browser/deferred_gpu_command_service.h"
@@ -243,7 +241,7 @@ void AwMainDelegate::ProcessExiting(const std::string& process_type) {
content::ContentBrowserClient*
AwMainDelegate::CreateContentBrowserClient() {
- content_browser_client_.reset(new AwContentBrowserClient(this));
+ content_browser_client_.reset(new AwContentBrowserClient());
return content_browser_client_.get();
}
@@ -266,14 +264,4 @@ content::ContentRendererClient*
return content_renderer_client_.get();
}
-scoped_refptr<AwQuotaManagerBridge> AwMainDelegate::CreateAwQuotaManagerBridge(
- AwBrowserContext* browser_context) {
- return AwQuotaManagerBridgeImpl::Create(browser_context);
-}
-
-content::WebContentsViewDelegate* AwMainDelegate::CreateViewDelegate(
- content::WebContents* web_contents) {
- return AwWebContentsViewDelegate::Create(web_contents);
-}
-
} // namespace android_webview
« no previous file with comments | « android_webview/lib/main/aw_main_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698