| Index: third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp b/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
|
| index 3f0820f6671839ef2a83db9a92c4d83467de7f81..1ec5e5163e9968ea9faf3ed08d98fc5b152c9319 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
|
| @@ -21,8 +21,8 @@
|
|
|
| SharedContextRateLimiter::SharedContextRateLimiter(unsigned max_pending_ticks)
|
| : max_pending_ticks_(max_pending_ticks), can_use_sync_queries_(false) {
|
| - context_provider_ =
|
| - Platform::Current()->CreateSharedOffscreenGraphicsContext3DProvider();
|
| + context_provider_ = WTF::WrapUnique(
|
| + Platform::Current()->CreateSharedOffscreenGraphicsContext3DProvider());
|
| if (!context_provider_)
|
| return;
|
|
|
|
|