| Index: third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
|
| index 47eae64de91e1ac45dbb06d051642e99d936729a..21ee642f827ae81e851a0be6cee73ebc976d8af0 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "modules/webgl/WebGL2RenderingContextBase.h"
|
|
|
| +#include <memory>
|
| #include "bindings/modules/v8/WebGLAny.h"
|
| #include "core/frame/ImageBitmap.h"
|
| #include "core/html/HTMLCanvasElement.h"
|
| @@ -25,11 +26,10 @@
|
| #include "modules/webgl/WebGLTransformFeedback.h"
|
| #include "modules/webgl/WebGLUniformLocation.h"
|
| #include "modules/webgl/WebGLVertexArrayObject.h"
|
| +#include "platform/wtf/CheckedNumeric.h"
|
| +#include "platform/wtf/PtrUtil.h"
|
| +#include "platform/wtf/text/WTFString.h"
|
| #include "public/platform/WebGraphicsContext3DProvider.h"
|
| -#include "wtf/CheckedNumeric.h"
|
| -#include "wtf/PtrUtil.h"
|
| -#include "wtf/text/WTFString.h"
|
| -#include <memory>
|
|
|
| using WTF::String;
|
|
|
|
|