summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-08-14 11:38:45 +0200
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-08-14 17:16:47 +0000
commit3a97ca8dd9b96b599ae2d33e40df0dd2f7ea5859 (patch)
tree43cc572ba067417c7341db81f71ae7cc6e0fcc3e /chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
parentf61ab1ac7f855cd281809255c0aedbb1895e1823 (diff)
BASELINE: Update chromium to 45.0.2454.40
Change-Id: Id2121d9f11a8fc633677236c65a3e41feef589e4 Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
Diffstat (limited to 'chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp b/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
index a980de357a9..f5c008950be 100644
--- a/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
+++ b/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
@@ -32,6 +32,8 @@
#include "wtf/RefPtr.h"
#include <gtest/gtest.h>
+namespace WTF {
+
namespace {
template<typename Set>
@@ -244,7 +246,7 @@ TEST(LinkedHashSetTest, PrependOrMoveToLastWithDuplicates)
prependOrMoveToLastWithDuplicates<LinkedHashSet<int>>();
}
-class DummyRefCounted: public WTF::RefCounted<DummyRefCounted> {
+class DummyRefCounted : public RefCounted<DummyRefCounted> {
public:
DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; }
~DummyRefCounted() { m_isDeleted = true; }
@@ -718,4 +720,6 @@ TEST(LinkedHashSetTest, Swap)
swapTestHelper<LinkedHashSet<int>>();
}
-} // namespace
+} // anonymous namespace
+
+} // namespace WTF