Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4186)

Unified Diff: cc/output/vulkan_renderer.h

Issue 1866203004: Convert //cc from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptrcc: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/output/vulkan_in_process_context_provider.cc ('k') | cc/output/vulkan_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/vulkan_renderer.h
diff --git a/cc/output/vulkan_renderer.h b/cc/output/vulkan_renderer.h
index 1dfbbc78b5bbc2accae873371420f3a7bee91b37..0d9eca728b5cdc96daa5d0da3362e938bfd9089a 100644
--- a/cc/output/vulkan_renderer.h
+++ b/cc/output/vulkan_renderer.h
@@ -15,7 +15,7 @@ class TextureMailboxDeleter;
class VulkanRenderer : public DirectRenderer {
public:
- static scoped_ptr<VulkanRenderer> Create(
+ static std::unique_ptr<VulkanRenderer> Create(
RendererClient* client,
const RendererSettings* settings,
OutputSurface* output_surface,
@@ -63,7 +63,7 @@ class VulkanRenderer : public DirectRenderer {
void EnsureBackbuffer() override;
void CopyCurrentRenderPassToBitmap(
DrawingFrame* frame,
- scoped_ptr<CopyOutputRequest> request) override;
+ std::unique_ptr<CopyOutputRequest> request) override;
private:
RendererCapabilitiesImpl capabilities_;
« no previous file with comments | « cc/output/vulkan_in_process_context_provider.cc ('k') | cc/output/vulkan_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698