blob: 0843e26ea19c81a8bbfac79713d2fbc1e8db3b12 [file] [log] [blame]
Tao Baic53fae12016-11-16 15:21:40 -08001/*
2 * Copyright (C) 2016 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 * This class provides more specific information about why the render process
21 * exited. The application may use this to decide how to handle the situation.
22 **/
23public abstract class RenderProcessGoneDetail {
24 /**
25 * Indicates whether the render process was observed to crash, or whether
26 * it was killed by the system.
27 *
28 * If the render process was killed, this is most likely caused by the
29 * system being low on memory.
30 *
Nate Fischer0a6140d2017-09-05 12:37:49 -070031 * @return {@code true} if render process crashed, otherwise it was killed by
Tao Baic53fae12016-11-16 15:21:40 -080032 * system.
33 **/
34 public abstract boolean didCrash();
Tobias Sargeantd10e4af2017-01-19 14:03:09 +000035
36 /**
37 * Returns the renderer priority that was set at the time that the
38 * renderer exited. This may be greater than the priority that
39 * any individual {@link WebView} requested using
40 * {@link WebView#setRendererPriorityPolicy}.
41 *
42 * @return the priority of the renderer at exit.
43 **/
44 @WebView.RendererPriority
45 public abstract int rendererPriorityAtExit();
Tao Baic53fae12016-11-16 15:21:40 -080046}