blob: abd130e2048a36640736c3c37258c2ac5c2d0ba8 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.android_webview;
/**
* Container to hold the application's response to WebViewClient#onSafeBrowsingHit().
*/
public class AwSafeBrowsingResponse {
private int mAction;
private boolean mReporting;
public AwSafeBrowsingResponse(int action, boolean reporting) {
mAction = action;
mReporting = reporting;
}
public int action() {
return mAction;
}
public boolean reporting() {
return mReporting;
}
}