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

Unified Diff: content/shell/utility/shell_content_utility_client.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/shell/renderer/shell_content_renderer_client.h ('k') | content/test/blink_test_environment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/utility/shell_content_utility_client.cc
diff --git a/content/shell/utility/shell_content_utility_client.cc b/content/shell/utility/shell_content_utility_client.cc
index 0acf82954e1e10cee3cb71a22ad063c8f6be3f7c..f8dc592ae23cbb478583f405ff9b92ab1702a79e 100644
--- a/content/shell/utility/shell_content_utility_client.cc
+++ b/content/shell/utility/shell_content_utility_client.cc
@@ -4,8 +4,9 @@
#include "content/shell/utility/shell_content_utility_client.h"
+#include <memory>
+
#include "base/bind.h"
-#include "base/memory/scoped_ptr.h"
#include "content/common/mojo/static_loader.h"
#include "content/public/test/test_mojo_app.h"
@@ -13,8 +14,8 @@ namespace content {
namespace {
-scoped_ptr<mojo::ShellClient> CreateTestApp() {
- return scoped_ptr<mojo::ShellClient>(new TestMojoApp);
+std::unique_ptr<mojo::ShellClient> CreateTestApp() {
+ return std::unique_ptr<mojo::ShellClient>(new TestMojoApp);
}
} // namespace
« no previous file with comments | « content/shell/renderer/shell_content_renderer_client.h ('k') | content/test/blink_test_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698