| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |