// 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 CHROME_BROWSER_SSL_HTTPS_ONLY_MODE_TAB_HELPER_H_ #define CHROME_BROWSER_SSL_HTTPS_ONLY_MODE_TAB_HELPER_H_ #include "base/containers/contains.h" #include "content/public/browser/web_contents_observer.h" #include "content/public/browser/web_contents_user_data.h" namespace content { class NavigationHandle; class WebContents; } // namespace content // A short-lived, per-tab helper for tracking HTTPS-Only Mode data about the // navigation. class HttpsOnlyModeTabHelper : public content::WebContentsObserver, public content::WebContentsUserData<HttpsOnlyModeTabHelper> { … }; #endif // CHROME_BROWSER_SSL_HTTPS_ONLY_MODE_TAB_HELPER_H_