Chromium Code Reviews| 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_ |