summaryrefslogtreecommitdiffstats
path: root/chrome/common/visitedlink_common.h
diff options
context:
space:
mode:
authormaruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-10 12:54:04 +0000
committermaruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-10 12:54:04 +0000
commitf09c718082535c0de7f066cb63f95809070f35a6 (patch)
tree0c7bbd37cccef8748b8c6e1768d2d95f7989a1a0 /chrome/common/visitedlink_common.h
parent15567be3dd3dacb0abae800ede436eac8123482c (diff)
downloadchromium_src-f09c718082535c0de7f066cb63f95809070f35a6.zip
chromium_src-f09c718082535c0de7f066cb63f95809070f35a6.tar.gz
chromium_src-f09c718082535c0de7f066cb63f95809070f35a6.tar.bz2
NO CODE CHANGE.
Fix files with lines > 80 cols. Part 2. Review URL: http://codereview.chromium.org/40226 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11326 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/visitedlink_common.h')
-rw-r--r--chrome/common/visitedlink_common.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/common/visitedlink_common.h b/chrome/common/visitedlink_common.h
index 06a4f5c..35cadb7 100644
--- a/chrome/common/visitedlink_common.h
+++ b/chrome/common/visitedlink_common.h
@@ -91,8 +91,8 @@ class VisitedLinkCommon {
};
// 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 @@ class VisitedLinkCommon {
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_);
}