| Index: base/hash.h
|
| diff --git a/base/hash.h b/base/hash.h
|
| index cf8ea3a26e49475a9187d7005cc17b0f470609f6..485e704609648ea01bc5a3da0a41d32954d50333 100644
|
| --- a/base/hash.h
|
| +++ b/base/hash.h
|
| @@ -12,9 +12,7 @@
|
|
|
| namespace base {
|
|
|
| -// From http://www.azillionmonkeys.com/qed/hash.html
|
| -// This is the hash used on WebCore/platform/stringhash
|
| -BASE_EXPORT uint32 SuperFastHash(const char * data, int len);
|
| +BASE_EXPORT uint32 SuperFastHash(const char* data, int len);
|
|
|
| inline uint32 Hash(const char* key, size_t length) {
|
| return SuperFastHash(key, static_cast<int>(length));
|
|
|