| Index: third_party/WebKit/Source/platform/graphics/ContiguousContainer.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ContiguousContainer.h b/third_party/WebKit/Source/platform/graphics/ContiguousContainer.h
|
| index dc6b5c041a8c5a458d15125342ea0d91ae1f29fe..c46c4992bcc10b0a6728aaf2baa85060c82eccd0 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ContiguousContainer.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/ContiguousContainer.h
|
| @@ -11,10 +11,10 @@
|
| #include "wtf/Noncopyable.h"
|
| #include "wtf/OwnPtr.h"
|
| #include "wtf/TypeTraits.h"
|
| -#include "wtf/Utility.h"
|
| #include "wtf/Vector.h"
|
| #include <cstddef>
|
| #include <iterator>
|
| +#include <utility>
|
|
|
| namespace blink {
|
|
|
| @@ -148,7 +148,7 @@ public:
|
| static_assert(alignment % WTF_ALIGN_OF(DerivedElementType) == 0,
|
| "Derived type requires stronger alignment.");
|
| size_t allocSize = align(sizeof(DerivedElementType));
|
| - return *new (allocate(allocSize)) DerivedElementType(WTF::forward<Args>(args)...);
|
| + return *new (allocate(allocSize)) DerivedElementType(std::forward<Args>(args)...);
|
| }
|
|
|
| void removeLast()
|
|
|