#ifndef CHROME_BROWSER_WEBAPPS_WEB_APP_OFFLINE_H_
#define CHROME_BROWSER_WEBAPPS_WEB_APP_OFFLINE_H_
#include "content/public/browser/browser_context.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/alternative_error_page_override_info.mojom.h"
#include "url/gurl.h"
namespace content {
class RenderFrameHost;
}
namespace web_app {
content::mojom::AlternativeErrorPageOverrideInfoPtr GetOfflinePageInfo(
const GURL& url,
content::RenderFrameHost* render_frame_host,
content::BrowserContext* browser_context);
void TrackOfflinePageVisibility(content::RenderFrameHost* render_frame_host);
}
#endif