| Index: chrome/browser/safe_browsing/threat_details_history.cc
|
| diff --git a/chrome/browser/safe_browsing/threat_details_history.cc b/chrome/browser/safe_browsing/threat_details_history.cc
|
| index 28033996658e38e0db14fb75a506648692a4bb3c..5e20925c3453c13558623965b86316793e80890c 100644
|
| --- a/chrome/browser/safe_browsing/threat_details_history.cc
|
| +++ b/chrome/browser/safe_browsing/threat_details_history.cc
|
| @@ -18,6 +18,8 @@
|
|
|
| using content::BrowserThread;
|
|
|
| +namespace safe_browsing {
|
| +
|
| ThreatDetailsRedirectsCollector::ThreatDetailsRedirectsCollector(
|
| Profile* profile)
|
| : profile_(profile), has_started_(false) {
|
| @@ -50,7 +52,7 @@ bool ThreatDetailsRedirectsCollector::HasStarted() const {
|
| return has_started_;
|
| }
|
|
|
| -const std::vector<safe_browsing::RedirectChain>&
|
| +const std::vector<RedirectChain>&
|
| ThreatDetailsRedirectsCollector::GetCollectedUrls() const {
|
| return redirects_urls_;
|
| }
|
| @@ -124,3 +126,5 @@ void ThreatDetailsRedirectsCollector::AllDone() {
|
| BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, callback_);
|
| callback_.Reset();
|
| }
|
| +
|
| +} // namespace safe_browsing
|
|
|