blob: 1d3a617a6bec8a6016c06f62ef87b1d72eb8840b [file] [log] [blame]
Nate Fischer2f7af062017-07-06 11:32:31 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.webkit;
18
19/**
20 * Used to indicate an action to take when hitting a malicious URL. Instances of this class are
Nate Fischerbc1da9e2017-07-27 12:33:55 -070021 * created by the WebView and passed to {@link android.webkit.WebViewClient#onSafeBrowsingHit}. The
22 * host application must call {@link #showInterstitial(boolean)}, {@link #proceed(boolean)}, or
23 * {@link #backToSafety(boolean)} to set the WebView's response to the Safe Browsing hit.
Nate Fischer3898ac12017-08-09 23:02:36 -070024 *
25 * <p>
26 * If reporting is enabled, all reports will be sent according to the privacy policy referenced by
27 * {@link android.webkit.WebView#getSafeBrowsingPrivacyPolicyUrl()}.
Nate Fischer2f7af062017-07-06 11:32:31 -070028 */
29public abstract class SafeBrowsingResponse {
30
31 /**
32 * Display the default interstitial.
33 *
Nate Fischer0a6140d2017-09-05 12:37:49 -070034 * @param allowReporting {@code true} if the interstitial should show a reporting checkbox.
Nate Fischer2f7af062017-07-06 11:32:31 -070035 */
Nate Fischer6aabdc42017-07-12 17:12:16 -070036 public abstract void showInterstitial(boolean allowReporting);
Nate Fischer2f7af062017-07-06 11:32:31 -070037
38 /**
39 * Act as if the user clicked "visit this unsafe site."
40 *
Nate Fischer0a6140d2017-09-05 12:37:49 -070041 * @param report {@code true} to enable Safe Browsing reporting.
Nate Fischer2f7af062017-07-06 11:32:31 -070042 */
Nate Fischer6aabdc42017-07-12 17:12:16 -070043 public abstract void proceed(boolean report);
Nate Fischer2f7af062017-07-06 11:32:31 -070044
45 /**
46 * Act as if the user clicked "back to safety."
47 *
Nate Fischer0a6140d2017-09-05 12:37:49 -070048 * @param report {@code true} to enable Safe Browsing reporting.
Nate Fischer2f7af062017-07-06 11:32:31 -070049 */
Nate Fischer6aabdc42017-07-12 17:12:16 -070050 public abstract void backToSafety(boolean report);
Nate Fischer2f7af062017-07-06 11:32:31 -070051}