Chromium Code Reviews| Index: base/values.h |
| diff --git a/base/values.h b/base/values.h |
| index 07d49855d0082d42a9308406c0c52ea6a2e0f081..f0d5c6b11a303682018203830cdb12e1efd9a71a 100644 |
| --- a/base/values.h |
| +++ b/base/values.h |
| @@ -100,6 +100,9 @@ class Value { |
| // Compares if two Value objects have equal contents. |
| virtual bool Equals(const Value* other) const; |
| + // Compares if two Value objects have equal contents. Can hanndle NULLs. |
|
Mattias Nissler (ping if slow)
2010/12/01 10:36:36
s/hanndle/handle/
You might want to mention that N
battre (please use the other)
2010/12/01 17:44:38
Done.
|
| + static bool Equals(const Value* a, const Value* b); |
| + |
| protected: |
| // This isn't safe for end-users (they should use the Create*Value() |
| // static methods above), but it's useful for subclasses. |