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

Unified Diff: components/security_interstitials/content/security_interstitial_controller_client.h

Issue 2603433002: Move SecurityInterstitialPage into component (Closed)
Patch Set: missed some changes in rebase 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: components/security_interstitials/content/security_interstitial_controller_client.h
diff --git a/components/security_interstitials/content/security_interstitial_controller_client.h b/components/security_interstitials/content/security_interstitial_controller_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..1d70720718c6397d2082bce4b2a8baa71d5c409e
--- /dev/null
+++ b/components/security_interstitials/content/security_interstitial_controller_client.h
@@ -0,0 +1,70 @@
+// Copyright 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 COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_SECURITY_INTERSTITIAL_CONTROLLER_CLIENT_H_
+#define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_SECURITY_INTERSTITIAL_CONTROLLER_CLIENT_H_
+
+#include "base/macros.h"
+#include "components/security_interstitials/core/controller_client.h"
+#include "url/gurl.h"
+
+namespace content {
+ class InterstitialPage;
+ class WebContents;
+}
+
+namespace security_interstitials {
+
+class MetricsHelper;
+
+// Handle commands from security interstitial pages. This class should only be
+// instantiated by SafeBrowsingBlockingPage for the time being.
+// TODO(jialiul): After we've done componentizing SafeBrowsingBlockingPage, we
+// should revisit this class to decide if other interstitials can use
+// SecurityInterstitialControllerClient.
+class SecurityInterstitialControllerClient
+ : public security_interstitials::ControllerClient {
+ public:
+ SecurityInterstitialControllerClient(
+ content::WebContents* web_contents,
+ std::unique_ptr<MetricsHelper> metrics_helper,
+ PrefService* prefs,
+ const std::string& app_locale,
+ const GURL& default_safe_page);
+
+ ~SecurityInterstitialControllerClient() override;
+
+ void set_interstitial_page(content::InterstitialPage* interstitial_page);
+ content::InterstitialPage* interstitial_page();
+
+ // security_interstitials::ControllerClient overrides.
+ void GoBack() override;
+ void GoBackAfterNavigationCommitted() override;
+ void Proceed() override;
+ void Reload() override;
+ void OpenUrlInCurrentTab(const GURL& url) override;
+ PrefService* GetPrefService() override;
+ const std::string& GetApplicationLocale() const override;
+ bool CanLaunchDateAndTimeSettings() override;
+ void LaunchDateAndTimeSettings() override;
+
+protected:
+ // security_interstitials::ControllerClient overrides.
+ const std::string GetExtendedReportingPrefName() const override;
+ content::WebContents* web_contents_;
+
+ private:
+ content::InterstitialPage* interstitial_page_;
+ PrefService* prefs_;
+ const std::string app_locale_;
+ // The default safe page we should go to if there is no previous page to go
+ // back to, e.g. chrome:kChromeUINewTabURL.
+ const GURL default_safe_page_;
+
+ DISALLOW_COPY_AND_ASSIGN(SecurityInterstitialControllerClient);
+};
+
+} // namespace security_interstitials
+
+#endif // COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_SECURITY_INTERSTITIAL_CONTROLLER_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698