| Index: gpu/ipc/service/stream_texture_android.h
|
| diff --git a/gpu/ipc/service/stream_texture_android.h b/gpu/ipc/service/stream_texture_android.h
|
| index 5cf9d14e28c56da8ce28dabd5fc909f67fa2cc0d..9f17ba760e1ec575eb1a41af6eb8737af4d659fb 100644
|
| --- a/gpu/ipc/service/stream_texture_android.h
|
| +++ b/gpu/ipc/service/stream_texture_android.h
|
| @@ -7,6 +7,8 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "gpu/command_buffer/service/gl_stream_texture_image.h"
|
| @@ -64,7 +66,7 @@ class StreamTexture : public gpu::gles2::GLStreamTextureImage,
|
| // GpuCommandBufferStub::DestructionObserver implementation.
|
| void OnWillDestroyStub() override;
|
|
|
| - scoped_ptr<ui::ScopedMakeCurrent> MakeStubCurrent();
|
| + std::unique_ptr<ui::ScopedMakeCurrent> MakeStubCurrent();
|
|
|
| void UpdateTexImage();
|
|
|
|
|