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

Unified Diff: content/public/test/mock_render_thread.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent 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 | « content/public/test/mock_render_process_host.cc ('k') | content/public/test/mock_render_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/mock_render_thread.h
diff --git a/content/public/test/mock_render_thread.h b/content/public/test/mock_render_thread.h
index 5301acfcf046069c394088164d1c45799c946803..eeb37442f1b0d353077a3420b99920afa855813b 100644
--- a/content/public/test/mock_render_thread.h
+++ b/content/public/test/mock_render_thread.h
@@ -65,7 +65,7 @@ class MockRenderThread : public RenderThread {
ResourceDispatcherDelegate* delegate) override;
void RecordAction(const base::UserMetricsAction& action) override;
void RecordComputedAction(const std::string& action) override;
- scoped_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer(
+ std::unique_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer(
size_t buffer_size) override;
cc::SharedBitmapManager* GetSharedBitmapManager() override;
void RegisterExtension(v8::Extension* extension) override;
@@ -149,7 +149,7 @@ class MockRenderThread : public RenderThread {
int32_t new_frame_routing_id_;
// The last known good deserializer for sync messages.
- scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_;
+ std::unique_ptr<IPC::MessageReplyDeserializer> reply_deserializer_;
// A list of message filters added to this thread.
std::vector<scoped_refptr<IPC::MessageFilter> > filters_;
@@ -158,7 +158,7 @@ class MockRenderThread : public RenderThread {
base::ObserverList<RenderProcessObserver> observers_;
cc::TestSharedBitmapManager shared_bitmap_manager_;
- scoped_ptr<ServiceRegistry> service_registry_;
+ std::unique_ptr<ServiceRegistry> service_registry_;
};
} // namespace content
« no previous file with comments | « content/public/test/mock_render_process_host.cc ('k') | content/public/test/mock_render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698