| Index: third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
|
| diff --git a/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h b/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
|
| index 5cf9d8cefd6b04a5c1387e54d1518df50fcf729d..d35f36b887db36a8462cddd24aa826d3d67c3c4c 100644
|
| --- a/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
|
| +++ b/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
|
| @@ -31,19 +31,19 @@
|
| #ifndef WorkerWebSocketChannel_h
|
| #define WorkerWebSocketChannel_h
|
|
|
| +#include <stdint.h>
|
| +#include <memory>
|
| #include "bindings/core/v8/SourceLocation.h"
|
| #include "core/workers/WorkerThreadLifecycleObserver.h"
|
| #include "modules/websockets/WebSocketChannel.h"
|
| #include "modules/websockets/WebSocketChannelClient.h"
|
| #include "platform/heap/Handle.h"
|
| +#include "platform/wtf/Assertions.h"
|
| +#include "platform/wtf/Forward.h"
|
| +#include "platform/wtf/RefPtr.h"
|
| +#include "platform/wtf/Vector.h"
|
| +#include "platform/wtf/text/WTFString.h"
|
| #include "public/platform/WebTraceLocation.h"
|
| -#include "wtf/Assertions.h"
|
| -#include "wtf/Forward.h"
|
| -#include "wtf/RefPtr.h"
|
| -#include "wtf/Vector.h"
|
| -#include "wtf/text/WTFString.h"
|
| -#include <memory>
|
| -#include <stdint.h>
|
|
|
| namespace blink {
|
|
|
|
|