1 /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
2  * vim: ts=4 sw=4 expandtab:
3  * This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 
7 package org.mozilla.geckoview;
8 
9 import android.support.annotation.AnyThread;
10 
11 /**
12  * Used by a ContentDelegate to indicate what action to take on a slow script event.
13  * @see GeckoSession.ContentDelegate#onSlowScript(GeckoSession,String)
14  */
15 @AnyThread
16 public enum SlowScriptResponse {
17     STOP, CONTINUE;
18 }
19