commit | ced9224fbb7866e6ea7e9da221c0b2570008bd55 | [log] [tgz] |
---|---|---|
author | dcheng <[email protected]> | Thu Apr 07 00:00:12 2016 |
committer | Commit bot <[email protected]> | Thu Apr 07 00:01:36 2016 |
tree | de33816db6214cdde6ea16354cab6b38ec76ab35 | |
parent | 2c26b87586f57a0b3d4ce5aca1077b36d406c7d3 [diff] [blame] |
Convert //ppapi to use std::unique_ptr BUG=554298 [email protected] Review URL: https://codereview.chromium.org/1864293002 Cr-Commit-Position: refs/heads/master@{#385591}
diff --git a/ppapi/proxy/ppb_graphics_3d_proxy.h b/ppapi/proxy/ppb_graphics_3d_proxy.h index e2b4dda..fab0122 100644 --- a/ppapi/proxy/ppb_graphics_3d_proxy.h +++ b/ppapi/proxy/ppb_graphics_3d_proxy.h
@@ -62,7 +62,7 @@ gpu::GpuControl* GetGpuControl() override; int32_t DoSwapBuffers(const gpu::SyncToken& sync_token) override; - scoped_ptr<PpapiCommandBufferProxy> command_buffer_; + std::unique_ptr<PpapiCommandBufferProxy> command_buffer_; DISALLOW_COPY_AND_ASSIGN(Graphics3D); };