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

Unified Diff: chrome/browser/predictors/logged_in_predictor_table.cc

Issue 13979002: Add support for split PSL list distinctions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed chrome_frame compilation issue Created 7 years, 8 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: chrome/browser/predictors/logged_in_predictor_table.cc
diff --git a/chrome/browser/predictors/logged_in_predictor_table.cc b/chrome/browser/predictors/logged_in_predictor_table.cc
index f251ba60fa1f1ca9f4dfc252fc3596071c67dc24..bb996793e27e658e715506d09cbc32169d3bd5fc 100644
--- a/chrome/browser/predictors/logged_in_predictor_table.cc
+++ b/chrome/browser/predictors/logged_in_predictor_table.cc
@@ -34,7 +34,8 @@ LoggedInPredictorTable::~LoggedInPredictorTable() {
string LoggedInPredictorTable::GetKey(const GURL& url) const {
string effective_domain(
- net::RegistryControlledDomainService::GetDomainAndRegistry(url.host()));
+ net::RegistryControlledDomainService::GetDomainAndRegistry(
+ url.host(), net::RCDS::EXCLUDE_PRIVATE_REGISTRIES));
if (effective_domain.empty())
effective_domain = url.host();

Powered by Google App Engine
This is Rietveld 408576698