Chromium Code Reviews| Index: src/profile-generator.h |
| diff --git a/src/profile-generator.h b/src/profile-generator.h |
| index 0eb73bef97251fad36ddbb368ec0d952e7d31bd9..1c4520e1eeddfe5f977ff582b1d9e6330813fcf0 100644 |
| --- a/src/profile-generator.h |
| +++ b/src/profile-generator.h |
| @@ -74,6 +74,8 @@ class StringsStorage { |
| inline const char* GetFunctionName(const char* name); |
| private: |
| + static const uint32_t kMaxNameSize; |
|
mnaganov (inactive)
2011/11/09 11:45:23
Static consts are preferred to be initialized in t
|
| + |
| INLINE(static bool StringsMatch(void* key1, void* key2)) { |
| return strcmp(reinterpret_cast<char*>(key1), |
| reinterpret_cast<char*>(key2)) == 0; |