// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_SSL_TYPED_NAVIGATION_UPGRADE_THROTTLE_H_ #define CHROME_BROWSER_SSL_TYPED_NAVIGATION_UPGRADE_THROTTLE_H_ #include <memory> #include "base/timer/elapsed_timer.h" #include "base/timer/timer.h" #include "content/public/browser/navigation_throttle.h" #include "url/gurl.h" namespace content { class NavigationHandle; } // Responsible for observing navigations that were typed in the omnibox // and defaulted to HTTPS scheme and falling back to HTTP version when needed. class TypedNavigationUpgradeThrottle : public content::NavigationThrottle { … }; #endif // CHROME_BROWSER_SSL_TYPED_NAVIGATION_UPGRADE_THROTTLE_H_