Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: chrome/browser/content_settings/mixed_content_settings_tab_helper.h

Issue 1905033002: PlzNavigate: Move navigation-level mixed content checks to the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@console-security-message
Patch Set: Minor changes from nasko@'s comments Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/content_settings/mixed_content_settings_tab_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/content_settings/mixed_content_settings_tab_helper.h
diff --git a/chrome/browser/content_settings/mixed_content_settings_tab_helper.h b/chrome/browser/content_settings/mixed_content_settings_tab_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..113c451a3d5c99febf42681d398648a9cd5a9a1b
--- /dev/null
+++ b/chrome/browser/content_settings/mixed_content_settings_tab_helper.h
@@ -0,0 +1,48 @@
+// Copyright 2017 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 CHROME_BROWSER_CONTENT_SETTINGS_MIXED_CONTENT_SETTINGS_TAB_HELPER_H_
+#define CHROME_BROWSER_CONTENT_SETTINGS_MIXED_CONTENT_SETTINGS_TAB_HELPER_H_
+
+#include "content/public/browser/web_contents_observer.h"
+#include "content/public/browser/web_contents_user_data.h"
+
+namespace content {
+class SiteInstance;
+}
+
+// Controls mixed content related settings for the associated WebContents,
+// working as the browser version of the mixed content state kept by
+// ContentSettingsObserver in the renderer.
+class MixedContentSettingsTabHelper
+ : public content::WebContentsObserver,
+ public content::WebContentsUserData<MixedContentSettingsTabHelper> {
+ public:
+ ~MixedContentSettingsTabHelper() override;
+
+ // Enables running active mixed content resources in the associated
+ // WebContents/tab.
+ void AllowRunningOfInsecureContent();
+
+ bool is_running_insecure_content_allowed() {
+ return is_running_insecure_content_allowed_;
+ }
+
+ private:
+ friend class content::WebContentsUserData<MixedContentSettingsTabHelper>;
+
+ explicit MixedContentSettingsTabHelper(content::WebContents* tab);
+
+ void DidFinishNavigation(
+ content::NavigationHandle* navigation_handle) override;
+
+ // Members to control mixed content settings for the tab. They will be reset
+ // on cross-site main frame navigations.
+ content::SiteInstance* insecure_content_site_instance_ = nullptr;
+ bool is_running_insecure_content_allowed_ = false;
+
+ DISALLOW_COPY_AND_ASSIGN(MixedContentSettingsTabHelper);
+};
+
+#endif // CHROME_BROWSER_CONTENT_SETTINGS_MIXED_CONTENT_SETTINGS_TAB_HELPER_H_
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/content_settings/mixed_content_settings_tab_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698