summaryrefslogtreecommitdiff
path: root/chromium/weblayer/browser/safe_browsing/weblayer_ui_manager_delegate.h
blob: 1f35bd64d0ee530646cc2c93d73a105146fe0972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2021 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 WEBLAYER_BROWSER_SAFE_BROWSING_WEBLAYER_UI_MANAGER_DELEGATE_H_
#define WEBLAYER_BROWSER_SAFE_BROWSING_WEBLAYER_UI_MANAGER_DELEGATE_H_

#include "components/safe_browsing/content/browser/ui_manager.h"

namespace weblayer {

// Provides embedder-specific logic for SafeBrowsingUIManager.
class WebLayerSafeBrowsingUIManagerDelegate
    : public safe_browsing::SafeBrowsingUIManager::Delegate {
 public:
  WebLayerSafeBrowsingUIManagerDelegate();
  ~WebLayerSafeBrowsingUIManagerDelegate() override;

  WebLayerSafeBrowsingUIManagerDelegate(
      const WebLayerSafeBrowsingUIManagerDelegate&) = delete;
  WebLayerSafeBrowsingUIManagerDelegate& operator=(
      const WebLayerSafeBrowsingUIManagerDelegate&) = delete;

  // safe_browsing::SafeBrowsingUIManager::Delegate:
  std::string GetApplicationLocale() override;
  void TriggerSecurityInterstitialShownExtensionEventIfDesired(
      content::WebContents* web_contents,
      const GURL& page_url,
      const std::string& reason,
      int net_error_code) override;
  void TriggerSecurityInterstitialProceededExtensionEventIfDesired(
      content::WebContents* web_contents,
      const GURL& page_url,
      const std::string& reason,
      int net_error_code) override;
  prerender::NoStatePrefetchContents* GetNoStatePrefetchContentsIfExists(
      content::WebContents* web_contents) override;
  bool IsHostingExtension(content::WebContents* web_contents) override;
  PrefService* GetPrefs(content::BrowserContext* browser_context) override;
  history::HistoryService* GetHistoryService(
      content::BrowserContext* browser_context) override;
  safe_browsing::PingManager* GetPingManagerIfExists() override;
  scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory(
      content::BrowserContext* browser_context) override;
  bool IsMetricsAndCrashReportingEnabled() override;
  bool IsSendingOfHitReportsEnabled() override;
};

}  // namespace weblayer

#endif  // WEBLAYER_BROWSER_SAFE_BROWSING_WEBLAYER_UI_MANAGER_DELEGATE_H_