| Index: third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.h b/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.h
|
| index 3286ca84e747f4832f8bc8832b23d4a87ff0dec2..96805c1ec6c23e3e0c3aacb847565525550842ec 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.h
|
| @@ -5,11 +5,12 @@
|
| #ifndef SharedContextRateLimiter_h
|
| #define SharedContextRateLimiter_h
|
|
|
| -#include "public/platform/WebGraphicsContext3D.h"
|
| +#include "gpu/command_buffer/client/gles2_interface.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Deque.h"
|
| #include "wtf/Noncopyable.h"
|
| #include "wtf/OwnPtr.h"
|
| +#include "wtf/PassOwnPtr.h"
|
|
|
| namespace blink {
|
|
|
| @@ -46,7 +47,7 @@ private:
|
| SharedContextRateLimiter(unsigned maxPendingTicks);
|
|
|
| OwnPtr<WebGraphicsContext3DProvider> m_contextProvider;
|
| - Deque<WebGLId> m_queries;
|
| + Deque<GLuint> m_queries;
|
| unsigned m_maxPendingTicks;
|
| bool m_canUseSyncQueries;
|
| };
|
|
|