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

Side by Side Diff: components/security_interstitials/core/base_safe_browsing_error_ui.cc

Issue 2852333003: Rename SafeBrowsingErrorUI to SafeBrowsingLoudErrorUI (Closed)
Patch Set: Comments Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/security_interstitials/core/base_safe_browsing_error_ui.h"
6
7 namespace security_interstitials {
8
9 BaseSafeBrowsingErrorUI::BaseSafeBrowsingErrorUI(
10 const GURL& request_url,
11 const GURL& main_frame_url,
12 BaseSafeBrowsingErrorUI::SBInterstitialReason reason,
13 const BaseSafeBrowsingErrorUI::SBErrorDisplayOptions& display_options,
14 const std::string& app_locale,
15 const base::Time& time_triggered,
16 ControllerClient* controller)
17 : request_url_(request_url),
18 main_frame_url_(main_frame_url),
19 interstitial_reason_(reason),
20 display_options_(display_options),
21 app_locale_(app_locale),
22 time_triggered_(time_triggered),
23 controller_(controller) {}
24
25 BaseSafeBrowsingErrorUI::~BaseSafeBrowsingErrorUI() {}
26
27 } // security_interstitials
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698