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

Side by Side Diff: android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java

Issue 2814593002: WebView: add {set,get}SafeBrowsingEnabled per WebView (Closed)
Patch Set: Add javatests Created 3 years, 8 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 package org.chromium.android_webview; 5 package org.chromium.android_webview;
6 6
7 import org.chromium.base.annotations.CalledByNative; 7 import org.chromium.base.annotations.CalledByNative;
8 import org.chromium.base.annotations.JNINamespace; 8 import org.chromium.base.annotations.JNINamespace;
9 9
10 /** 10 /**
(...skipping 13 matching lines...) Expand all
24 @CalledByNative 24 @CalledByNative
25 public abstract boolean shouldBlockFileUrls(); 25 public abstract boolean shouldBlockFileUrls();
26 26
27 @CalledByNative 27 @CalledByNative
28 public abstract boolean shouldBlockNetworkLoads(); 28 public abstract boolean shouldBlockNetworkLoads();
29 29
30 @CalledByNative 30 @CalledByNative
31 public abstract boolean shouldAcceptThirdPartyCookies(); 31 public abstract boolean shouldAcceptThirdPartyCookies();
32 32
33 @CalledByNative 33 @CalledByNative
34 public abstract boolean getSafeBrowsingEnabled();
35
36 @CalledByNative
34 public abstract AwContentsBackgroundThreadClient getBackgroundThreadClient() ; 37 public abstract AwContentsBackgroundThreadClient getBackgroundThreadClient() ;
35 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698