summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-10-13 13:24:50 +0200
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-10-14 10:57:25 +0000
commitaf3d4809763ef308f08ced947a73b624729ac7ea (patch)
tree4402b911e30383f6c6dace1e8cf3b8e85355db3a /chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
parent0e8ff63a407fe323e215bb1a2c423c09a4747c8a (diff)
BASELINE: Update Chromium to 47.0.2526.14
Also adding in sources needed for spellchecking. Change-Id: Idd44170fa1616f26315188970a8d5ba7d472b18a Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
Diffstat (limited to 'chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp b/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
index f5c008950be..12779f37e7b 100644
--- a/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
+++ b/chromium/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
@@ -24,9 +24,9 @@
*/
#include "config.h"
+#include "wtf/ListHashSet.h"
#include "wtf/LinkedHashSet.h"
-#include "wtf/ListHashSet.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
#include "wtf/RefPtr.h"
@@ -36,7 +36,7 @@ namespace WTF {
namespace {
-template<typename Set>
+template <typename Set>
void removeFirstHelper()
{
Set list;
@@ -76,7 +76,7 @@ TEST(LinkedHashSetTest, RemoveFirst)
removeFirstHelper<LinkedHashSet<int>>();
}
-template<typename Set>
+template <typename Set>
void appendOrMoveToLastNewItems()
{
Set list;
@@ -110,7 +110,7 @@ TEST(LinkedHashSetTest, AppendOrMoveToLastNewItems)
appendOrMoveToLastNewItems<LinkedHashSet<int>>();
}
-template<typename Set>
+template <typename Set>
void appendOrMoveToLastWithDuplicates()
{
Set list;
@@ -161,7 +161,7 @@ TEST(LinkedHashSetTest, AppendOrMoveToLastWithDuplicates)
appendOrMoveToLastWithDuplicates<LinkedHashSet<int>>();
}
-template<typename Set>
+template <typename Set>
void prependOrMoveToFirstNewItems()
{
Set list;
@@ -195,7 +195,7 @@ TEST(LinkedHashSetTest, PrependOrMoveToFirstNewItems)
prependOrMoveToFirstNewItems<LinkedHashSet<int>>();
}
-template<typename Set>
+template <typename Set>
void prependOrMoveToLastWithDuplicates()
{
Set list;
@@ -264,7 +264,7 @@ private:
int DummyRefCounted::m_refInvokesCount = 0;
-template<typename Set>
+template <typename Set>
void withRefPtr()
{
bool isDeleted = false;
@@ -306,7 +306,7 @@ TEST(LinkedHashSetTest, WithRefPtr)
withRefPtr<LinkedHashSet<RefPtr<DummyRefCounted>>>();
}
-template<typename Set, typename SetRef, typename Iterator>
+template <typename Set, typename SetRef, typename Iterator>
void findHelper()
{
Set set;
@@ -340,7 +340,7 @@ TEST(LinkedHashSetTest, Find)
findHelper<LinkedHashSet<int>, LinkedHashSet<int>&, LinkedHashSet<int>::iterator>();
}
-template<typename Set>
+template <typename Set>
void insertBeforeHelper(bool canModifyWhileIterating)
{
Set set;
@@ -397,7 +397,7 @@ TEST(LinkedHashSetTest, InsertBefore)
insertBeforeHelper<LinkedHashSet<int>>(false);
}
-template<typename Set>
+template <typename Set>
void addReturnIterator(bool canModifyWhileIterating)
{
Set set;
@@ -455,7 +455,7 @@ TEST(LinkedHashSetTest, AddReturnIterator)
addReturnIterator<LinkedHashSet<int>>(false);
}
-template<typename Set>
+template <typename Set>
void excerciseValuePeekInType()
{
Set set;
@@ -537,7 +537,7 @@ struct ComplexityTranslator {
static bool equal(const Complicated& a, const Simple& b) { return a.m_simple.m_value == b.m_value; }
};
-template<typename Set>
+template <typename Set>
void translatorTest()
{
Set set;
@@ -658,7 +658,7 @@ TEST(ListHashSetTest, WithOwnPtr)
EXPECT_EQ(ptr2, ownPtr2);
}
-template<typename Set>
+template <typename Set>
void swapTestHelper()
{
int num = 10;