Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update effective TLD (registry-controlled domain) data to latest file from ↵ | pam@chromium.org | 2010-02-12 | 1 | -2/+49 |
| | | | | | | | | | | | | | | Mozilla. This corresponds to their patch ec019978e8dc, from 2010-02-11 13:39 +0000. Also update instructions for updating this file. BUG=27523 TEST=none Review URL: http://codereview.chromium.org/600077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38946 0039d316-1c4b-4281-b951-d872f2087c98 | ||||
* | Use a perfect hash map for the registry controlled domain service. | jam@chromium.org | 2009-12-23 | 1 | -0/+3651 |
On my very fast machine, building the std::set in release mode on startup and blocks the UI thread for 15ms (there are > 3300 entries). It also uses 275KB of memory, not including 50KB of data in the dll. Using a perfect hash map, there's no startup cost. The dll's size increases by 135KB but there's no extra memory consumption, leading to a memory reduction of 140KB. Review URL: http://codereview.chromium.org/515001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35196 0039d316-1c4b-4281-b951-d872f2087c98 |