#ifndef ANDROID_WEBVIEW_BROWSER_AW_RENDER_PROCESS_GONE_DELEGATE_H_
#define ANDROID_WEBVIEW_BROWSER_AW_RENDER_PROCESS_GONE_DELEGATE_H_
namespace content {
class WebContents;
}
namespace android_webview {
class AwRenderProcessGoneDelegate {
public:
enum class RenderProcessGoneResult { kHandled, kUnhandled, kException };
static AwRenderProcessGoneDelegate* FromWebContents(
content::WebContents* web_contents);
virtual RenderProcessGoneResult OnRenderProcessGone(int child_process_id,
bool crashed) = 0;
protected:
AwRenderProcessGoneDelegate() {}
};
}
#endif