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

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

Issue 2615393002: Implement the basics for Safebrowsing for WebView (Closed)
Patch Set: more cleanup Created 3 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/lib/main/aw_main_delegate.h
diff --git a/android_webview/lib/main/aw_main_delegate.h b/android_webview/lib/main/aw_main_delegate.h
index 9319b7dfc5e43f830d69de87be139c5c35ba2fbe..42fd0539934de4781163b2aac500368ba3cab0f8 100644
--- a/android_webview/lib/main/aw_main_delegate.h
+++ b/android_webview/lib/main/aw_main_delegate.h
@@ -17,6 +17,10 @@ namespace content {
class BrowserMainRunner;
}
+namespace safe_browsing {
+class SafeBrowsingApiHandler;
+}
+
namespace android_webview {
class AwContentBrowserClient;
@@ -58,6 +62,8 @@ class AwMainDelegate : public content::ContentMainDelegate,
std::unique_ptr<AwContentBrowserClient> content_browser_client_;
std::unique_ptr<AwContentGpuClient> content_gpu_client_;
std::unique_ptr<AwContentRendererClient> content_renderer_client_;
+ std::unique_ptr<safe_browsing::SafeBrowsingApiHandler>
+ safe_browsing_api_handler_;
DISALLOW_COPY_AND_ASSIGN(AwMainDelegate);
};
« no previous file with comments | « android_webview/java/src/org/chromium/android_webview/AwContents.java ('k') | android_webview/lib/main/aw_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698