blob: dc343bbcc16d20d93936cbde9f895452ea266b81 [file] [log] [blame]
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_PRELOADING_PRERENDER_PRERENDER_NAVIGATION_UTILS_H_
#define CONTENT_BROWSER_PRELOADING_PRERENDER_PRERENDER_NAVIGATION_UTILS_H_
#include "url/gurl.h"
#include "url/origin.h"
namespace content::prerender_navigation_utils {
// Returns true if the response code is disallowed for pre-rendering (e.g 404,
// etc), and false otherwise. This should be called only for the response of the
// main frame in a prerendered page.
bool IsDisallowedHttpResponseCode(int response_code);
// Returns true if target_url is in the same site as origin.
bool IsSameSite(const GURL& target_url, const url::Origin& origin);
} // namespace content::prerender_navigation_utils
#endif // CONTENT_BROWSER_PRELOADING_PRERENDER_PRERENDER_NAVIGATION_UTILS_H_