Chromium Code Reviews| Index: Source/wtf/StringHasherTest.cpp |
| diff --git a/Source/wtf/StringHasherTest.cpp b/Source/wtf/StringHasherTest.cpp |
| index f7557b6c6f6ec3aee8a5bb7515df7f4312a7178b..f862bd4808e253a466d9e174bab1e02e880b7179 100644 |
| --- a/Source/wtf/StringHasherTest.cpp |
| +++ b/Source/wtf/StringHasherTest.cpp |
| @@ -24,11 +24,11 @@ |
| */ |
| #include "config.h" |
| - |
| #include "wtf/StringHasher.h" |
| + |
| #include <gtest/gtest.h> |
| -namespace { |
| +namespace WTF { |
| static const LChar nullLChars[2] = { 0, 0 }; |
|
kochi
2015/06/15 03:34:22
How about using anonymous namespace to remove all
tkent
2015/06/15 04:45:57
Done.
|
| static const UChar nullUChars[2] = { 0, 0 }; |
| @@ -406,4 +406,4 @@ TEST(StringHasherTest, StringHasher_hashMemory) |
| EXPECT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testBUChars)); |
| } |
| -} // namespace |
| +} // namespace WTF |