#ifndef COMPONENTS_WEBAPPS_BROWSER_WEB_CONTENTS_WEB_APP_URL_LOADER_H_
#define COMPONENTS_WEBAPPS_BROWSER_WEB_CONTENTS_WEB_APP_URL_LOADER_H_
#include "base/functional/callback_forward.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "content/public/browser/navigation_controller.h"
class GURL;
namespace content {
class WebContents;
}
namespace webapps {
enum class WebAppUrlLoaderResult { … };
class WebAppUrlLoader { … };
const char* ConvertUrlLoaderResultToString(WebAppUrlLoader::Result result);
}
#endif