#ifndef COMPONENTS_NO_STATE_PREFETCH_BROWSER_NO_STATE_PREFETCH_UTILS_H_
#define COMPONENTS_NO_STATE_PREFETCH_BROWSER_NO_STATE_PREFETCH_UTILS_H_
#include "services/metrics/public/cpp/ukm_source_id.h"
class GURL;
namespace content {
class NavigationHandle;
}
namespace prerender {
class NoStatePrefetchManager;
bool IsGoogleOriginURL(const GURL& origin_url);
void RecordNoStatePrefetchMetrics(
content::NavigationHandle* navigation_handle,
ukm::SourceId source_id,
NoStatePrefetchManager* no_state_prefetch_manager);
}
#endif