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

Unified Diff: content/public/test/render_view_test.cc

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/render_view_test.h ('k') | content/public/test/sandbox_file_system_test_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/render_view_test.cc
diff --git a/content/public/test/render_view_test.cc b/content/public/test/render_view_test.cc
index 20b437970a13f7d0250cb91f3b80f9a4c37bfba0..8d9fde01338223abe7f542cbc6024e0c5f01ebd1 100644
--- a/content/public/test/render_view_test.cc
+++ b/content/public/test/render_view_test.cc
@@ -9,6 +9,7 @@
#include <cctype>
#include "base/location.h"
+#include "base/memory/ptr_util.h"
#include "base/run_loop.h"
#include "base/single_thread_task_runner.h"
#include "build/build_config.h"
@@ -387,8 +388,8 @@ void RenderViewTest::TearDown() {
render_thread_->SendCloseMessage();
- scoped_ptr<blink::WebLeakDetector> leak_detector =
- make_scoped_ptr(blink::WebLeakDetector::create(this));
+ std::unique_ptr<blink::WebLeakDetector> leak_detector =
+ base::WrapUnique(blink::WebLeakDetector::create(this));
leak_detector->prepareForLeakDetection(view_->GetWebView()->mainFrame());
@@ -604,7 +605,7 @@ void RenderViewTest::Resize(gfx::Size new_size,
params.resizer_rect = resizer_rect;
params.is_fullscreen_granted = is_fullscreen_granted;
params.display_mode = blink::WebDisplayModeBrowser;
- scoped_ptr<IPC::Message> resize_message(new ViewMsg_Resize(0, params));
+ std::unique_ptr<IPC::Message> resize_message(new ViewMsg_Resize(0, params));
OnMessageReceived(*resize_message);
}
@@ -692,8 +693,8 @@ ContentRendererClient* RenderViewTest::CreateContentRendererClient() {
return new ContentRendererClient;
}
-scoped_ptr<ResizeParams> RenderViewTest::InitialSizeParams() {
- return make_scoped_ptr(new ResizeParams());
+std::unique_ptr<ResizeParams> RenderViewTest::InitialSizeParams() {
+ return base::WrapUnique(new ResizeParams());
}
void RenderViewTest::GoToOffset(int offset,
« no previous file with comments | « content/public/test/render_view_test.h ('k') | content/public/test/sandbox_file_system_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698