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

Issue 13979002: Add support for split PSL list distinctions. (Closed)

Created:
7 years, 8 months ago by nyquist
Modified:
7 years, 7 months ago
CC:
chromium-reviews, cbentzel+watch_chromium.org, jam, creis+watch_chromium.org, browser-components-watch_chromium.org, joi+watch-content_chromium.org, Aaron Boodman, darin-cc_chromium.org, ajwong+watch_chromium.org, chromium-apps-reviews_chromium.org, markusheintz_, James Su
Visibility:
Public.

Description

Add support for split Public Suffix List distinctions. This adds support for the private additions to the Public Suffix List. * Since net::RegistryControlledDomainService only contained static methods, this CL changes these methods to be contained within the namespace net::registry_controlled_domains and removes the class entirely. * All methods defined as part of net::registry_controlled_domains now have a mandatory argument to specify whether the private registries should be included. * Since the old implementation did not take into account the private registries, this sets all old callers to use EXCLUDE_PRIVATE as the net::registry_controlled_domains::PrivateRegistryFilter argument. * Changes the parameter for including unknown registries or not to be an enum instead of a boolean, using a similar naming scheme as for the private registries: net::registry_controlled_domains::UnknownRegistryFilter. * This also updates the effective-TLD data file to: 45cfff9c781f 2013-04-23 11:51 +0100 It includes changes from a number of Mozilla bugs, listed on https://hg.mozilla.org/mozilla-central/log/45cfff9c781f/netwerk/dns/effective_tld_names.dat between 290afd57d2a8 (2012-07-04 16:08 +0100) and 45cfff9c781f (2013-04-23 11:51 +0100). BUG=37436, 96086 R=brettw@chromium.org, erikwright@chromium.org, pam@chromium.org, rsleevi@chromium.org, sky@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=199771

Patch Set 1 #

Patch Set 2 : Fix tld_cleanup issue and indenting #

Patch Set 3 : Use bool instead of int for is_private when assigning #

Total comments: 21

Patch Set 4 : Addressed most comments. #

Patch Set 5 : Renamed enum values. #

Patch Set 6 : Rebased #

Patch Set 7 : Fixed 'else if' in tld_cleanup #

Total comments: 12

Patch Set 8 : Rebased #

Patch Set 9 : Rebased #

Patch Set 10 : Addressed comments from patch set 7. #

Total comments: 14

Patch Set 11 : Addressed comments from patch set 10 #

Patch Set 12 : Rebased #

Patch Set 13 : Added unit tests for tld_cleanup #

Patch Set 14 : Rebased #

Patch Set 15 : Rebased and fixed local tracking branch #

Patch Set 16 : Reran gperf to update copyright year #

Total comments: 12

Patch Set 17 : Addressed comments from patch set 16 #

Total comments: 6

Patch Set 18 : Addressed commments from patch set 17 #

Patch Set 19 : Rebased #

Patch Set 20 : #

Patch Set 21 : Changed usage of asserts #

Patch Set 22 : Fixed asserting that rules exist. Changed to use expect instead of assert. #

Patch Set 23 : Fixed chrome_frame compilation issue #

Total comments: 19

Patch Set 24 : Rebased #

Patch Set 25 : Rebase #

Patch Set 26 : Changed to use namespace instead of class #

Patch Set 27 : Updated source list for effective_tld_names.dat from Mozilla #

Patch Set 28 : Rebased #

Patch Set 29 : Added const modifiers #

Total comments: 14

Patch Set 30 : Addressed comments from patch set 23 and 29 #

Total comments: 4

Patch Set 31 : Addressed nits from brettw #

Patch Set 32 : Reupload of fixes of nits #

Total comments: 30

Patch Set 33 : Addressed comments from pam #

Total comments: 8

Patch Set 34 : Moved internal methods into a namespace #

Total comments: 2

Patch Set 35 : Addressed comments from 32 and 33 #

Patch Set 36 : Fix comment line length #

Total comments: 2

Patch Set 37 : Rebased #

Patch Set 38 : Fixed comment #

Patch Set 39 : Rebased #

Unified diffs Side-by-side diffs Delta from patch set Stats (+7315 lines, -6521 lines) Patch
M chrome/browser/autocomplete/autocomplete_input.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +10 lines, -4 lines 0 comments Download
M chrome/browser/autocomplete/history_quick_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +6 lines, -2 lines 0 comments Download
M chrome/browser/autocomplete/history_url_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +6 lines, -2 lines 0 comments Download
M chrome/browser/browsing_data/cookies_tree_model.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/browser/content_settings/local_shared_objects_container.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 8 chunks +23 lines, -24 lines 0 comments Download
M chrome/browser/google/google_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +7 lines, -4 lines 0 comments Download
M chrome/browser/history/history_backend.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +6 lines, -2 lines 0 comments Download
M chrome/browser/intranet_redirect_detector.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +10 lines, -4 lines 0 comments Download
M chrome/browser/net/url_fixer_upper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -1 line 0 comments Download
M chrome/browser/predictors/logged_in_predictor_table.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/safe_browsing/ui_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +8 lines, -7 lines 0 comments Download
M chrome/browser/ui/omnibox/alternate_nav_url_fetcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +11 lines, -4 lines 0 comments Download
M chrome/browser/ui/toolbar/back_forward_menu_model.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +6 lines, -4 lines 0 comments Download
M chrome/browser/ui/web_contents_modal_dialog_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/ui/website_settings/website_settings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -1 line 0 comments Download
M chrome/common/extensions/permissions/permission_set.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/renderer/safe_browsing/phishing_dom_feature_extractor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -4 lines 0 comments Download
M chrome/renderer/safe_browsing/phishing_url_feature_extractor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -1 line 0 comments Download
M chrome_frame/ready_mode/ready_mode.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -2 lines 0 comments Download
M content/browser/loader/resource_dispatcher_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -2 lines 0 comments Download
M content/browser/net/sqlite_persistent_cookie_store.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -1 line 0 comments Download
M content/browser/site_instance_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +7 lines, -2 lines 0 comments Download
M content/browser/worker_host/worker_process_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -2 lines 0 comments Download
M content/renderer/render_view_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +6 lines, -3 lines 0 comments Download
M net/base/registry_controlled_domains/effective_tld_names.dat View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 16 chunks +231 lines, -62 lines 0 comments Download
M net/base/registry_controlled_domains/effective_tld_names.gperf View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +6105 lines, -5651 lines 0 comments Download
M net/base/registry_controlled_domains/effective_tld_names_unittest1.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 4 chunks +50 lines, -43 lines 0 comments Download
M net/base/registry_controlled_domains/effective_tld_names_unittest1.gperf View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +12 lines, -8 lines 0 comments Download
M net/base/registry_controlled_domains/effective_tld_names_unittest2.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
M net/base/registry_controlled_domains/effective_tld_names_unittest2.gperf View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -2 lines 0 comments Download
M net/base/registry_controlled_domains/registry_controlled_domain.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +106 lines, -86 lines 0 comments Download
M net/base/registry_controlled_domains/registry_controlled_domain.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +119 lines, -113 lines 0 comments Download
M net/base/registry_controlled_domains/registry_controlled_domain_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +200 lines, -81 lines 0 comments Download
M net/base/sdch_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -1 line 0 comments Download
M net/base/static_cookie_policy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +10 lines, -4 lines 0 comments Download
M net/cookies/cookie_monster.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -2 lines 0 comments Download
M net/cookies/cookie_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -2 lines 0 comments Download
M net/net.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 4 chunks +3 lines, -2 lines 0 comments Download
M net/ssl/server_bound_cert_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -1 line 0 comments Download
M net/tools/tld_cleanup/README View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +12 lines, -3 lines 0 comments Download
M net/tools/tld_cleanup/tld_cleanup.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +7 lines, -231 lines 0 comments Download
M net/tools/tld_cleanup/tld_cleanup.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -3 lines 0 comments Download
A net/tools/tld_cleanup/tld_cleanup_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +48 lines, -0 lines 0 comments Download
A + net/tools/tld_cleanup/tld_cleanup_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 8 chunks +70 lines, -138 lines 0 comments Download
A net/tools/tld_cleanup/tld_cleanup_util_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +168 lines, -0 lines 0 comments Download
M ui/base/text/text_elider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -1 line 0 comments Download

Messages

Total messages: 32 (0 generated)
nyquist
pam: PTAL Most interesting parts are: net/base/registry_controlled_domains/ net/tools/tld_cleanup/
7 years, 8 months ago (2013-04-10 01:28:22 UTC) #1
nyquist
And FYI, this review is missing one file, namely the output from gperf. I therefore ...
7 years, 8 months ago (2013-04-10 01:33:46 UTC) #2
Pam (message me for reviews)
https://codereview.chromium.org/13979002/diff/53001/chrome/browser/autocomplete/autocomplete_input.cc File chrome/browser/autocomplete/autocomplete_input.cc (right): https://codereview.chromium.org/13979002/diff/53001/chrome/browser/autocomplete/autocomplete_input.cc#newcode271 chrome/browser/autocomplete/autocomplete_input.cc:271: false, It'd be great to change this second parameter ...
7 years, 8 months ago (2013-04-10 17:18:17 UTC) #3
nyquist
Addressed all comments. PTAL. https://codereview.chromium.org/13979002/diff/53001/chrome/browser/autocomplete/autocomplete_input.cc File chrome/browser/autocomplete/autocomplete_input.cc (right): https://codereview.chromium.org/13979002/diff/53001/chrome/browser/autocomplete/autocomplete_input.cc#newcode271 chrome/browser/autocomplete/autocomplete_input.cc:271: false, On 2013/04/10 17:18:17, Pam ...
7 years, 8 months ago (2013-04-12 00:41:30 UTC) #4
Pam (message me for reviews)
https://codereview.chromium.org/13979002/diff/53001/chrome/browser/autocomplete/autocomplete_input.cc File chrome/browser/autocomplete/autocomplete_input.cc (right): https://codereview.chromium.org/13979002/diff/53001/chrome/browser/autocomplete/autocomplete_input.cc#newcode271 chrome/browser/autocomplete/autocomplete_input.cc:271: false, On 2013/04/12 00:41:30, nyquist wrote: > On 2013/04/10 ...
7 years, 8 months ago (2013-04-12 08:54:02 UTC) #5
Pam (message me for reviews)
https://codereview.chromium.org/13979002/diff/53001/chrome/browser/autocomplete/autocomplete_input.cc File chrome/browser/autocomplete/autocomplete_input.cc (right): https://codereview.chromium.org/13979002/diff/53001/chrome/browser/autocomplete/autocomplete_input.cc#newcode271 chrome/browser/autocomplete/autocomplete_input.cc:271: false, On 2013/04/12 08:54:03, Pam wrote: > On 2013/04/12 ...
7 years, 8 months ago (2013-04-12 09:45:14 UTC) #6
nyquist
PTAL. Still missing a test for the tld_cleanup target though, but the rest of the ...
7 years, 8 months ago (2013-04-17 02:28:10 UTC) #7
Pam (message me for reviews)
Also waiting for the new test. https://codereview.chromium.org/13979002/diff/55012/chrome/browser/autocomplete/autocomplete_input.cc File chrome/browser/autocomplete/autocomplete_input.cc (right): https://codereview.chromium.org/13979002/diff/55012/chrome/browser/autocomplete/autocomplete_input.cc#newcode269 chrome/browser/autocomplete/autocomplete_input.cc:269: net::RegistryControlledDomainService::GetRegistryLength( In principle, ...
7 years, 8 months ago (2013-04-18 19:54:42 UTC) #8
nyquist
pam: PTAL I have addressed all the comments, and I have now also split out ...
7 years, 8 months ago (2013-04-20 19:13:30 UTC) #9
Pam (message me for reviews)
Hi Tommy -- I know you're often up late, but I don't always read my ...
7 years, 8 months ago (2013-04-22 09:42:12 UTC) #10
nyquist
pam: Addressed all comments. PTAL. https://codereview.chromium.org/13979002/diff/232005/net/base/registry_controlled_domains/registry_controlled_domain.h File net/base/registry_controlled_domains/registry_controlled_domain.h (right): https://codereview.chromium.org/13979002/diff/232005/net/base/registry_controlled_domains/registry_controlled_domain.h#newcode153 net/base/registry_controlled_domains/registry_controlled_domain.h:153: // registry length will ...
7 years, 8 months ago (2013-04-23 21:58:26 UTC) #11
Pam (message me for reviews)
LGTM with the changes (two required, one optional) below. Thanks for this work! - Pam ...
7 years, 8 months ago (2013-04-24 11:59:43 UTC) #12
nyquist
Addressed all comments. https://codereview.chromium.org/13979002/diff/245001/net/tools/tld_cleanup/tld_cleanup_util.h File net/tools/tld_cleanup/tld_cleanup_util.h (right): https://codereview.chromium.org/13979002/diff/245001/net/tools/tld_cleanup/tld_cleanup_util.h#newcode40 net/tools/tld_cleanup/tld_cleanup_util.h:40: // Loads the file described by ...
7 years, 8 months ago (2013-04-25 18:13:22 UTC) #13
nyquist
brettw: For content/ erikwright: For chrome_frame/ sky: For chrome/ and ui/ rsleevi: For net/ (except ...
7 years, 8 months ago (2013-04-26 19:11:18 UTC) #14
erikwright (departed)
LGTM for net/cookies and chrome_frame
7 years, 8 months ago (2013-04-26 19:22:32 UTC) #15
erikwright (departed)
On 2013/04/26 19:22:32, erikwright wrote: > LGTM for net/cookies and chrome_frame content/browser/net also LGTM.
7 years, 8 months ago (2013-04-26 19:23:27 UTC) #16
Ryan Sleevi
https://codereview.chromium.org/13979002/diff/291026/net/base/registry_controlled_domains/registry_controlled_domain.cc File net/base/registry_controlled_domains/registry_controlled_domain.cc (right): https://codereview.chromium.org/13979002/diff/291026/net/base/registry_controlled_domains/registry_controlled_domain.cc#newcode73 net/base/registry_controlled_domains/registry_controlled_domain.cc:73: const GURL& gurl, PrivateRegistryFilter filter) { According to clang-format ...
7 years, 8 months ago (2013-04-26 19:39:59 UTC) #17
sky
LGTM https://codereview.chromium.org/13979002/diff/291026/chrome/browser/autocomplete/autocomplete_input.cc File chrome/browser/autocomplete/autocomplete_input.cc (right): https://codereview.chromium.org/13979002/diff/291026/chrome/browser/autocomplete/autocomplete_input.cc#newcode280 chrome/browser/autocomplete/autocomplete_input.cc:280: size_t tld_length = const https://codereview.chromium.org/13979002/diff/291026/chrome/browser/autocomplete/history_quick_provider.cc File chrome/browser/autocomplete/history_quick_provider.cc (right): ...
7 years, 8 months ago (2013-04-26 20:02:27 UTC) #18
Pam (message me for reviews)
https://codereview.chromium.org/13979002/diff/291026/chrome/browser/autocomplete/autocomplete_input.cc File chrome/browser/autocomplete/autocomplete_input.cc (right): https://codereview.chromium.org/13979002/diff/291026/chrome/browser/autocomplete/autocomplete_input.cc#newcode280 chrome/browser/autocomplete/autocomplete_input.cc:280: size_t tld_length = On 2013/04/26 20:02:27, sky wrote: > ...
7 years, 7 months ago (2013-04-29 09:25:55 UTC) #19
sky
https://codereview.chromium.org/13979002/diff/291026/chrome/browser/autocomplete/autocomplete_input.cc File chrome/browser/autocomplete/autocomplete_input.cc (right): https://codereview.chromium.org/13979002/diff/291026/chrome/browser/autocomplete/autocomplete_input.cc#newcode280 chrome/browser/autocomplete/autocomplete_input.cc:280: size_t tld_length = On 2013/04/29 09:25:56, Pam wrote: > ...
7 years, 7 months ago (2013-04-29 16:08:30 UTC) #20
Ryan Sleevi
Thanks again for taking this on, Tommy. net/ LGTM, with a few style nits and ...
7 years, 7 months ago (2013-05-06 21:23:12 UTC) #21
nyquist
brettw: PTAL at content/ pam/rsleevi: PTAL at your parts Addressed all known comments, except "move ...
7 years, 7 months ago (2013-05-06 22:30:56 UTC) #22
brettw
content lgtm https://codereview.chromium.org/13979002/diff/433001/content/browser/loader/resource_dispatcher_host_impl.cc File content/browser/loader/resource_dispatcher_host_impl.cc (right): https://codereview.chromium.org/13979002/diff/433001/content/browser/loader/resource_dispatcher_host_impl.cc#newcode1756 content/browser/loader/resource_dispatcher_host_impl.cc:1756: request->first_party_for_cookies(), request->url(), I thought the previous indenting ...
7 years, 7 months ago (2013-05-07 21:08:28 UTC) #23
nyquist
addressed nits from brettw https://codereview.chromium.org/13979002/diff/433001/content/browser/loader/resource_dispatcher_host_impl.cc File content/browser/loader/resource_dispatcher_host_impl.cc (right): https://codereview.chromium.org/13979002/diff/433001/content/browser/loader/resource_dispatcher_host_impl.cc#newcode1756 content/browser/loader/resource_dispatcher_host_impl.cc:1756: request->first_party_for_cookies(), request->url(), On 2013/05/07 21:08:28, ...
7 years, 7 months ago (2013-05-07 21:53:57 UTC) #24
Pam (message me for reviews)
https://codereview.chromium.org/13979002/diff/438014/chrome/browser/autocomplete/history_quick_provider.cc File chrome/browser/autocomplete/history_quick_provider.cc (right): https://codereview.chromium.org/13979002/diff/438014/chrome/browser/autocomplete/history_quick_provider.cc#newcode268 chrome/browser/autocomplete/history_quick_provider.cc:268: size_t registry_length = Still no 'const' https://codereview.chromium.org/13979002/diff/438014/chrome/browser/content_settings/local_shared_objects_container.cc File chrome/browser/content_settings/local_shared_objects_container.cc ...
7 years, 7 months ago (2013-05-08 13:23:09 UTC) #25
Pam (message me for reviews)
Oh, and please add bug 37436 to the BUG line too. Thanks, - Pam
7 years, 7 months ago (2013-05-08 13:28:38 UTC) #26
nyquist
pam: PTAL. Addressed your comments in #33, and moved the last two methods into an ...
7 years, 7 months ago (2013-05-08 22:16:59 UTC) #27
Pam (message me for reviews)
LGTM, with formatting nits described below fixed. Thanks for all your work getting this done. ...
7 years, 7 months ago (2013-05-10 09:33:24 UTC) #28
Pam (message me for reviews)
Still LGTM. One comment correction. https://codereview.chromium.org/13979002/diff/520004/chrome/browser/content_settings/local_shared_objects_container.cc File chrome/browser/content_settings/local_shared_objects_container.cc (right): https://codereview.chromium.org/13979002/diff/520004/chrome/browser/content_settings/local_shared_objects_container.cc#newcode23 chrome/browser/content_settings/local_shared_objects_container.cc:23: // Helper wrapper for ...
7 years, 7 months ago (2013-05-10 19:21:21 UTC) #29
nyquist
sorry. forgot to publish these comments earlier. https://codereview.chromium.org/13979002/diff/483001/chrome/browser/content_settings/local_shared_objects_container.cc File chrome/browser/content_settings/local_shared_objects_container.cc (right): https://codereview.chromium.org/13979002/diff/483001/chrome/browser/content_settings/local_shared_objects_container.cc#newcode21 chrome/browser/content_settings/local_shared_objects_container.cc:21: namespace { ...
7 years, 7 months ago (2013-05-10 20:43:36 UTC) #30
nyquist
All done at this point. Will run try-jobs and if all is good, will commit ...
7 years, 7 months ago (2013-05-10 20:53:19 UTC) #31
nyquist
7 years, 7 months ago (2013-05-13 18:13:10 UTC) #32
Message was sent while issue was closed.
Committed patchset #39 manually as r199771 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698