1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 package org.chromium.support_lib_boundary;
6 
7 /**
8  * Boundary interface for SafeBrowsingResponseCompat.
9  */
10 public interface SafeBrowsingResponseBoundaryInterface {
showInterstitial(boolean allowReporting)11     void showInterstitial(boolean allowReporting);
proceed(boolean report)12     void proceed(boolean report);
backToSafety(boolean report)13     void backToSafety(boolean report);
14 }
15