chromium/chrome/browser/ui/web_applications/webui_web_app_navigation_throttle.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/web_applications/webui_web_app_navigation_throttle.h"

#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/web_applications/app_browser_controller.h"
#include "chrome/browser/web_applications/web_app_constants.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/url_utils.h"
#include "url/gurl.h"

namespace web_app {

WebUIWebAppNavigationThrottle::WebUIWebAppNavigationThrottle(
    content::NavigationHandle* navigation_handle)
    :{}

WebUIWebAppNavigationThrottle::~WebUIWebAppNavigationThrottle() = default;

const char* WebUIWebAppNavigationThrottle::GetNameForLogging() {}

// static
std::unique_ptr<content::NavigationThrottle>
WebUIWebAppNavigationThrottle::MaybeCreateThrottleFor(
    content::NavigationHandle* handle) {}

content::NavigationThrottle::ThrottleCheckResult
WebUIWebAppNavigationThrottle::WillStartRequest() {}

content::NavigationThrottle::ThrottleCheckResult
WebUIWebAppNavigationThrottle::WillRedirectRequest() {}

}  // namespace web_app