| Index: mojo/public/cpp/bindings/lib/wtf_hash_util.h
|
| diff --git a/mojo/public/cpp/bindings/lib/wtf_hash_util.h b/mojo/public/cpp/bindings/lib/wtf_hash_util.h
|
| index cc590da67a0460a47ff7e43a6c0347ed49a6a529..fc95204db3c41b2ea7488929db724db4fa680800 100644
|
| --- a/mojo/public/cpp/bindings/lib/wtf_hash_util.h
|
| +++ b/mojo/public/cpp/bindings/lib/wtf_hash_util.h
|
| @@ -59,10 +59,10 @@ size_t WTFHash(size_t seed, const T& value) {
|
|
|
| template <typename T>
|
| struct StructPtrHashFn {
|
| - static unsigned hash(const StructPtr<T>& value) {
|
| + static unsigned GetHash(const StructPtr<T>& value) {
|
| return value.Hash(kHashSeed);
|
| }
|
| - static bool equal(const StructPtr<T>& left, const StructPtr<T>& right) {
|
| + static bool Equal(const StructPtr<T>& left, const StructPtr<T>& right) {
|
| return left.Equals(right);
|
| }
|
| static const bool safeToCompareToEmptyOrDeleted = false;
|
| @@ -70,10 +70,10 @@ struct StructPtrHashFn {
|
|
|
| template <typename T>
|
| struct InlinedStructPtrHashFn {
|
| - static unsigned hash(const InlinedStructPtr<T>& value) {
|
| + static unsigned GetHash(const InlinedStructPtr<T>& value) {
|
| return value.Hash(kHashSeed);
|
| }
|
| - static bool equal(const InlinedStructPtr<T>& left,
|
| + static bool Equal(const InlinedStructPtr<T>& left,
|
| const InlinedStructPtr<T>& right) {
|
| return left.Equals(right);
|
| }
|
|
|