// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_RENDERER_HOST_ISOLATED_WEB_APP_THROTTLE_H_ #define CONTENT_BROWSER_RENDERER_HOST_ISOLATED_WEB_APP_THROTTLE_H_ #include <optional> #include "content/common/content_export.h" #include "content/public/browser/navigation_throttle.h" #include "url/origin.h" namespace content { // Blocks navigations into or out of Isolated Web Apps. class CONTENT_EXPORT IsolatedWebAppThrottle : public NavigationThrottle { … }; } // namespace content #endif // CONTENT_BROWSER_RENDERER_HOST_ISOLATED_WEB_APP_THROTTLE_H_