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

Issue 13903018: Add the LoggedIn Predictor, to detect which websites a user is likely (Closed)

Created:
7 years, 8 months ago by tburkard
Modified:
7 years, 8 months ago
Reviewers:
Bernhard Bauer, Shishir
CC:
chromium-reviews, cbentzel+watch_chromium.org, gavinp+prer_chromium.org, shishir+watch_chromium.org, tburkard+watch_chromium.org, dominich+watch_chromium.org, markusheintz_, mmenke
Visibility:
Public.

Description

Add the LoggedIn Predictor, to detect which websites a user is likely logged into (or has been logged into). R=shishir@chromium.org, bauerb@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194484

Patch Set 1 #

Total comments: 27

Patch Set 2 : sync #

Patch Set 3 : fixes #

Patch Set 4 : added missing changed file #

Patch Set 5 : shishir's comments #

Patch Set 6 : fix build break #

Total comments: 12

Patch Set 7 : shishir's comments (#2) #

Patch Set 8 : scoped_refptr everywhere #

Patch Set 9 : line break #

Unified diffs Side-by-side diffs Delta from patch set Stats (+404 lines, -1 line) Patch
M chrome/browser/browsing_data/browsing_data_remover.h View 1 2 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/browsing_data/browsing_data_remover.cc View 1 2 3 4 5 6 5 chunks +42 lines, -0 lines 0 comments Download
A chrome/browser/predictors/logged_in_predictor_table.h View 1 2 3 4 5 6 1 chunk +54 lines, -0 lines 0 comments Download
A chrome/browser/predictors/logged_in_predictor_table.cc View 1 2 3 4 5 6 1 chunk +125 lines, -0 lines 0 comments Download
M chrome/browser/predictors/predictor_database.h View 1 2 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/predictors/predictor_database.cc View 1 2 7 chunks +11 lines, -0 lines 0 comments Download
M chrome/browser/prerender/prerender_field_trial.h View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/prerender/prerender_field_trial.cc View 1 2 5 chunks +24 lines, -0 lines 0 comments Download
M chrome/browser/prerender/prerender_manager.h View 1 2 3 4 5 6 7 3 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/prerender/prerender_manager.cc View 1 2 3 4 5 6 7 8 3 chunks +15 lines, -0 lines 0 comments Download
M chrome/browser/prerender/prerender_manager_factory.cc View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/prerender/prerender_tab_helper.h View 1 2 3 4 5 6 7 6 chunks +30 lines, -0 lines 0 comments Download
M chrome/browser/prerender/prerender_tab_helper.cc View 1 2 3 4 5 6 7 6 chunks +78 lines, -1 line 0 comments Download
M chrome/chrome_browser.gypi View 1 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 9 (0 generated)
tburkard
7 years, 8 months ago (2013-04-12 23:47:36 UTC) #1
tburkard
Thanks for reviewing. bauerb: please review browsing_data/* shishir: everything else. Thanks.
7 years, 8 months ago (2013-04-13 00:10:53 UTC) #2
Bernhard Bauer
browsing_data/ LGTM with a nit: https://codereview.chromium.org/13903018/diff/1/chrome/browser/browsing_data/browsing_data_remover.h File chrome/browser/browsing_data/browsing_data_remover.h (right): https://codereview.chromium.org/13903018/diff/1/chrome/browser/browsing_data/browsing_data_remover.h#newcode251 chrome/browser/browsing_data/browsing_data_remover.h:251: // Invoked on the ...
7 years, 8 months ago (2013-04-13 06:46:23 UTC) #3
Shishir
https://codereview.chromium.org/13903018/diff/1/chrome/browser/predictors/logged_in_predictor_table.cc File chrome/browser/predictors/logged_in_predictor_table.cc (right): https://codereview.chromium.org/13903018/diff/1/chrome/browser/predictors/logged_in_predictor_table.cc#newcode41 chrome/browser/predictors/logged_in_predictor_table.cc:41: if (!effective_domain.empty() && effective_domain[0] == '.') Comment on this ...
7 years, 8 months ago (2013-04-16 21:22:04 UTC) #4
tburkard
https://codereview.chromium.org/13903018/diff/1/chrome/browser/browsing_data/browsing_data_remover.h File chrome/browser/browsing_data/browsing_data_remover.h (right): https://codereview.chromium.org/13903018/diff/1/chrome/browser/browsing_data/browsing_data_remover.h#newcode251 chrome/browser/browsing_data/browsing_data_remover.h:251: // Invoked on the IO thread to clear the ...
7 years, 8 months ago (2013-04-16 21:47:19 UTC) #5
Shishir
https://codereview.chromium.org/13903018/diff/1/chrome/browser/prerender/prerender_field_trial.cc File chrome/browser/prerender/prerender_field_trial.cc (right): https://codereview.chromium.org/13903018/diff/1/chrome/browser/prerender/prerender_field_trial.cc#newcode273 chrome/browser/prerender/prerender_field_trial.cc:273: return base::FieldTrialList::FindFullName(kLoggedInPredictorTrialName) == On 2013/04/16 21:47:19, tburkard wrote: > ...
7 years, 8 months ago (2013-04-16 22:25:13 UTC) #6
tburkard
https://codereview.chromium.org/13903018/diff/1/chrome/browser/prerender/prerender_field_trial.cc File chrome/browser/prerender/prerender_field_trial.cc (right): https://codereview.chromium.org/13903018/diff/1/chrome/browser/prerender/prerender_field_trial.cc#newcode273 chrome/browser/prerender/prerender_field_trial.cc:273: return base::FieldTrialList::FindFullName(kLoggedInPredictorTrialName) == The predictor itself is never taking ...
7 years, 8 months ago (2013-04-16 22:45:33 UTC) #7
Shishir
lgtm
7 years, 8 months ago (2013-04-16 23:17:56 UTC) #8
tburkard
7 years, 8 months ago (2013-04-16 23:33:32 UTC) #9
Message was sent while issue was closed.
Committed patchset #9 manually as r194484.

Powered by Google App Engine
This is Rietveld 408576698