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

Issue 2669873002: [ImportantSites] Implementing dialog level blacklisting and blacklist expiration (Closed)

Created:
3 years, 10 months ago by dmurph
Modified:
3 years, 10 months ago
Reviewers:
dominickn, Theresa, gab, Ted C
CC:
chromium-reviews, tfarina, dominickn+watch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[ImportantSites] Implementing dialog level blacklisting and blacklist expiration R=dominickn,twellington BUG=682015, 682016 Review-Url: https://codereview.chromium.org/2669873002 Cr-Commit-Position: refs/heads/master@{#448795} Committed: https://chromium.googlesource.com/chromium/src/+/93fa43b36cf37af0b142fbe70d7e1cc3f05bca33

Patch Set 1 #

Total comments: 8

Patch Set 2 : Comments, still no tests #

Total comments: 19

Patch Set 3 : C++ tests #

Patch Set 4 : Comments #

Total comments: 14

Patch Set 5 : comments #

Patch Set 6 : rebase #

Total comments: 4

Patch Set 7 : comments, compile #

Total comments: 2

Patch Set 8 : compile and comments #

Patch Set 9 : android compile #

Unified diffs Side-by-side diffs Delta from patch set Stats (+194 lines, -59 lines) Patch
M chrome/android/java/src/org/chromium/chrome/browser/preferences/PrefServiceBridge.java View 1 2 3 4 5 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/android/preferences/pref_service_bridge.cc View 1 2 3 4 5 2 chunks +4 lines, -2 lines 0 comments Download
M chrome/browser/engagement/important_sites_util.h View 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/engagement/important_sites_util.cc View 1 2 3 4 5 6 6 chunks +74 lines, -27 lines 0 comments Download
M chrome/browser/engagement/important_sites_util_unittest.cc View 1 2 3 4 6 chunks +94 lines, -25 lines 0 comments Download
M chrome/browser/prefs/browser_prefs.cc View 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/common/pref_names.h View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/pref_names.cc View 1 2 3 4 5 6 7 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 43 (24 generated)
dmurph
Hi Dominick, I'm improving important sites by adding dialog-level blacklisting and blacklist expiration. These are ...
3 years, 10 months ago (2017-02-01 21:27:34 UTC) #2
dominickn
https://codereview.chromium.org/2669873002/diff/1/chrome/browser/engagement/important_sites_util.cc File chrome/browser/engagement/important_sites_util.cc (right): https://codereview.chromium.org/2669873002/diff/1/chrome/browser/engagement/important_sites_util.cc#newcode100 chrome/browser/engagement/important_sites_util.cc:100: base::Int64ToString(base::Time::Now().ToInternalValue())); Instead of a string, can you use a ...
3 years, 10 months ago (2017-02-01 22:22:04 UTC) #3
dmurph
Thanks for the comments! I added the java changes so that new static method is ...
3 years, 10 months ago (2017-02-02 23:53:29 UTC) #4
dominickn
Not sure if you wanted me to wait until the tests are there, but the ...
3 years, 10 months ago (2017-02-03 19:30:54 UTC) #5
dmurph
+twellington for Android changes +gab for browser_prefs.cc https://codereview.chromium.org/2669873002/diff/20001/chrome/android/java/src/org/chromium/chrome/browser/preferences/PrefServiceBridge.java File chrome/android/java/src/org/chromium/chrome/browser/preferences/PrefServiceBridge.java (right): https://codereview.chromium.org/2669873002/diff/20001/chrome/android/java/src/org/chromium/chrome/browser/preferences/PrefServiceBridge.java#newcode95 chrome/android/java/src/org/chromium/chrome/browser/preferences/PrefServiceBridge.java:95: * @param ...
3 years, 10 months ago (2017-02-03 20:03:29 UTC) #10
dominickn
Mostly small things now. https://codereview.chromium.org/2669873002/diff/60001/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java File chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java (right): https://codereview.chromium.org/2669873002/diff/60001/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java#newcode598 chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java:598: int[] importantReasons, boolean dialogBlacklisted) { ...
3 years, 10 months ago (2017-02-03 21:14:51 UTC) #13
Theresa
Android things lgtm % Dominick's nit about changing dialogBlacklisted to dialogDisabled
3 years, 10 months ago (2017-02-03 22:04:54 UTC) #14
dmurph
Thanks! Uploaded comments and rebased. https://codereview.chromium.org/2669873002/diff/60001/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java File chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java (right): https://codereview.chromium.org/2669873002/diff/60001/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java#newcode598 chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferences.java:598: int[] importantReasons, boolean dialogBlacklisted) ...
3 years, 10 months ago (2017-02-04 00:52:26 UTC) #16
dominickn
lgtm, thanks!
3 years, 10 months ago (2017-02-04 01:15:00 UTC) #20
gab
https://codereview.chromium.org/2669873002/diff/100001/chrome/common/pref_names.cc File chrome/common/pref_names.cc (right): https://codereview.chromium.org/2669873002/diff/100001/chrome/common/pref_names.cc#newcode1345 chrome/common/pref_names.cc:1345: // *************** LOCAL STATE *************** I know it's non-obvious... ...
3 years, 10 months ago (2017-02-06 20:34:01 UTC) #21
dmurph
+tedchoc for chrome/browser/android/preferences/pref_service_bridge.cc https://codereview.chromium.org/2669873002/diff/100001/chrome/common/pref_names.cc File chrome/common/pref_names.cc (right): https://codereview.chromium.org/2669873002/diff/100001/chrome/common/pref_names.cc#newcode1345 chrome/common/pref_names.cc:1345: // *************** LOCAL STATE *************** On ...
3 years, 10 months ago (2017-02-06 23:34:22 UTC) #23
dmurph
+tedchoc (for real this time) for chrome/browser/android/preferences/pref_service_bridge.cc
3 years, 10 months ago (2017-02-06 23:42:22 UTC) #25
gab
prefs lgtm w/ comment https://codereview.chromium.org/2669873002/diff/120001/chrome/common/pref_names.h File chrome/common/pref_names.h (right): https://codereview.chromium.org/2669873002/diff/120001/chrome/common/pref_names.h#newcode38 chrome/common/pref_names.h:38: extern const char kHomePage[]; This ...
3 years, 10 months ago (2017-02-07 15:38:11 UTC) #30
Ted C
On 2017/02/07 15:38:11, gab wrote: > prefs lgtm w/ comment > > https://codereview.chromium.org/2669873002/diff/120001/chrome/common/pref_names.h > File ...
3 years, 10 months ago (2017-02-07 18:45:25 UTC) #31
dmurph
Thanks! https://codereview.chromium.org/2669873002/diff/120001/chrome/common/pref_names.h File chrome/common/pref_names.h (right): https://codereview.chromium.org/2669873002/diff/120001/chrome/common/pref_names.h#newcode38 chrome/common/pref_names.h:38: extern const char kHomePage[]; On 2017/02/07 15:38:11, gab ...
3 years, 10 months ago (2017-02-07 21:43:12 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2669873002/140001
3 years, 10 months ago (2017-02-07 21:44:24 UTC) #35
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_dbg_recipe on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_arm64_dbg_recipe/builds/206866) android_compile_dbg on master.tryserver.chromium.android (JOB_FAILED, ...
3 years, 10 months ago (2017-02-07 22:04:57 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2669873002/160001
3 years, 10 months ago (2017-02-07 22:37:29 UTC) #40
commit-bot: I haz the power
3 years, 10 months ago (2017-02-07 23:46:08 UTC) #43
Message was sent while issue was closed.
Committed patchset #9 (id:160001) as
https://chromium.googlesource.com/chromium/src/+/93fa43b36cf37af0b142fbe70d7e...

Powered by Google App Engine
This is Rietveld 408576698