| Index: third_party/WebKit/Source/wtf/Vector.h
|
| diff --git a/third_party/WebKit/Source/wtf/Vector.h b/third_party/WebKit/Source/wtf/Vector.h
|
| index 77f86edc6667b9cb5fd5a9b5b3981a5605de3c28..851d75a3e4397da288beb4b54be1f209677888c5 100644
|
| --- a/third_party/WebKit/Source/wtf/Vector.h
|
| +++ b/third_party/WebKit/Source/wtf/Vector.h
|
| @@ -21,6 +21,11 @@
|
| #ifndef WTF_Vector_h
|
| #define WTF_Vector_h
|
|
|
| +#include <string.h>
|
| +#include <algorithm>
|
| +#include <initializer_list>
|
| +#include <iterator>
|
| +#include <utility>
|
| #include "wtf/Alignment.h"
|
| #include "wtf/ConditionalDestructor.h"
|
| #include "wtf/ContainerAnnotations.h"
|
| @@ -29,11 +34,6 @@
|
| #include "wtf/StdLibExtras.h"
|
| #include "wtf/VectorTraits.h"
|
| #include "wtf/allocator/PartitionAllocator.h"
|
| -#include <algorithm>
|
| -#include <initializer_list>
|
| -#include <iterator>
|
| -#include <string.h>
|
| -#include <utility>
|
|
|
| // For ASAN builds, disable inline buffers completely as they cause various
|
| // issues.
|
|
|