#ifndef CHROME_BROWSER_APPS_LINK_CAPTURING_LINK_CAPTURING_TAB_DATA_H_
#define CHROME_BROWSER_APPS_LINK_CAPTURING_LINK_CAPTURING_TAB_DATA_H_
#include "build/build_config.h"
#include "components/webapps/common/web_app_id.h"
#include "ui/base/window_open_disposition.h"
namespace content {
class WebContents;
}
namespace apps {
WindowOpenDisposition GetLinkCapturingSourceDisposition(
content::WebContents* contents);
void SetLinkCapturingSourceDisposition(
content::WebContents* contents,
WindowOpenDisposition source_disposition);
}
#endif