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

Unified Diff: chrome/common/visitedlink_common.h

Issue 40226: Fix files with lines > 80 cols. Part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 10 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
« no previous file with comments | « chrome/common/time_format_unittest.cc ('k') | chrome/common/visitedlink_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/visitedlink_common.h
===================================================================
--- chrome/common/visitedlink_common.h (revision 11111)
+++ chrome/common/visitedlink_common.h (working copy)
@@ -91,8 +91,8 @@
};
// Returns the fingerprint at the given index into the URL table. This
- // function should be called instead of accessing the table directly to contain
- // endian issues.
+ // function should be called instead of accessing the table directly to
+ // contain endian issues.
Fingerprint FingerprintAt(int32 table_offset) const {
DCHECK(hash_table_);
if (!hash_table_)
@@ -113,7 +113,8 @@
static Hash HashFingerprint(Fingerprint fingerprint, int32 table_length) {
return static_cast<Hash>(fingerprint % table_length);
}
- Hash HashFingerprint(Fingerprint fingerprint) const { // uses the current hashtable
+ // Uses the current hashtable.
+ Hash HashFingerprint(Fingerprint fingerprint) const {
return HashFingerprint(fingerprint, table_length_);
}
« no previous file with comments | « chrome/common/time_format_unittest.cc ('k') | chrome/common/visitedlink_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698