| Index: chrome/browser/content_settings/mixed_content_settings.h
|
| diff --git a/chrome/browser/content_settings/mixed_content_settings.h b/chrome/browser/content_settings/mixed_content_settings.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..68ba7614f979a971bb6aff1e5597a9a7bc9fbd8a
|
| --- /dev/null
|
| +++ b/chrome/browser/content_settings/mixed_content_settings.h
|
| @@ -0,0 +1,58 @@
|
| +// Copyright (c) 2016 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_H_
|
| +#define CHROME_BROWSER_CONTENT_SETTINGS_MIXED_CONTENT_SETTINGS_H_
|
| +
|
| +#include "content/public/browser/web_contents_observer.h"
|
| +#include "content/public/browser/web_contents_user_data.h"
|
| +
|
| +namespace content {
|
| +class SiteInstance;
|
| +class NavigationHandle;
|
| +}
|
| +
|
| +// Controls mixed content related settings for the associated WebContents.
|
| +class MixedContentSettings
|
| + : public content::WebContentsObserver,
|
| + public content::WebContentsUserData<MixedContentSettings> {
|
| + public:
|
| + ~MixedContentSettings() override;
|
| +
|
| + // Enables displaying mixed-content resources in the tab containing the
|
| + // specified frame. This state is reset to the default of not allowed when the
|
| + // main frame navigates to a different SiteInstance.
|
| + void AllowDisplayingOfInsecureContent();
|
| +
|
| + // Enables running mixed-content resources in the tab containing the specified
|
| + // frame. This state is reset to the default of not allowed when the main
|
| + // frame navigates to a different SiteInstance.
|
| + void AllowRunningOfInsecureContent();
|
| +
|
| + bool insecure_content_allowed_running() {
|
| + return insecure_content_allowed_running_;
|
| + }
|
| +
|
| + bool insecure_content_allowed_displaying() {
|
| + return insecure_content_allowed_displaying_;
|
| + }
|
| +
|
| + private:
|
| + friend class content::WebContentsUserData<MixedContentSettings>;
|
| +
|
| + explicit MixedContentSettings(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_;
|
| + bool insecure_content_allowed_running_;
|
| + bool insecure_content_allowed_displaying_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(MixedContentSettings);
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_CONTENT_SETTINGS_MIXED_CONTENT_SETTINGS_H_
|
|
|