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

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: Now using shared scheme collections from url_util.h. Created 3 years, 11 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
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..22f1422b5bfdfbd57e0fa592e011e27663b2aa23
--- /dev/null
+++ b/chrome/browser/content_settings/mixed_content_settings_tab_helper.h
@@ -0,0 +1,48 @@
+// Copyright (c) 2017 The Chromium Authors. All rights reserved.
nasko 2017/01/23 22:32:38 nit: No "(c)" needed.
carlosk 2017/02/08 02:59:02 Done.
+// 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, working as the
nasko 2017/01/23 22:32:38 nit: associated what?
carlosk 2017/02/08 02:59:03 Done.
+// 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_

Powered by Google App Engine
This is Rietveld 408576698