summaryrefslogtreecommitdiffstats
path: root/chrome/browser/safe_browsing
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/safe_browsing')
-rw-r--r--chrome/browser/safe_browsing/safe_browsing_service.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/safe_browsing/safe_browsing_service.cc b/chrome/browser/safe_browsing/safe_browsing_service.cc
index f7e47f7..8e69d3d 100644
--- a/chrome/browser/safe_browsing/safe_browsing_service.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_service.cc
@@ -207,7 +207,7 @@ void SafeBrowsingService::DisplayBlockingPage(const GURL& url,
entry.render_view_id == render_view_id &&
entry.result == result &&
entry.domain ==
- RegistryControlledDomainService::GetDomainAndRegistry(url)) {
+ net::RegistryControlledDomainService::GetDomainAndRegistry(url)) {
MessageLoop::current()->PostTask(FROM_HERE, NewRunnableMethod(
this, &SafeBrowsingService::NotifyClientBlockingComplete,
client, true));
@@ -405,8 +405,8 @@ void SafeBrowsingService::OnBlockingPageDone(SafeBrowsingBlockingPage* page,
WhiteListedEntry entry;
entry.render_process_host_id = page->render_process_host_id();
entry.render_view_id = page->render_view_id();
- entry.domain =
- RegistryControlledDomainService::GetDomainAndRegistry(page->url());
+ entry.domain = net::RegistryControlledDomainService::GetDomainAndRegistry(
+ page->url());
entry.result = page->result();
white_listed_entries_.push_back(entry);
}