diff options
| author | TreeHugger Robot <treehugger-gerrit@google.com> | 2018-03-01 20:42:35 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-03-01 20:42:35 +0000 |
| commit | 9845f75a3389027b2db3120f2b37e84e961d528c (patch) | |
| tree | 53f8895da5f6c9289bd3fe7947d43e9daacd7cf5 /core/java/android/webkit/WebView.java | |
| parent | b437f30f286131cc3a01bca7b56ca7dcab37cf74 (diff) | |
| parent | 65e3be0255aa2c6dade77db5c62842217a8aa762 (diff) | |
Merge "WebView: add @NonNull annotation to API"
Diffstat (limited to 'core/java/android/webkit/WebView.java')
| -rw-r--r-- | core/java/android/webkit/WebView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index a8f6b03cd97a..fadc3dc75e89 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -1683,7 +1683,7 @@ public class WebView extends AbsoluteLayout * @param callback will be called on the UI thread with {@code true} if initialization is * successful, {@code false} otherwise. */ - public static void startSafeBrowsing(Context context, + public static void startSafeBrowsing(@NonNull Context context, @Nullable ValueCallback<Boolean> callback) { getFactory().getStatics().initSafeBrowsing(context, callback); } |
