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

Unified Diff: content/utility/utility_blink_platform_impl.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/utility/in_process_utility_thread.h ('k') | content/utility/utility_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/utility/utility_blink_platform_impl.h
diff --git a/content/utility/utility_blink_platform_impl.h b/content/utility/utility_blink_platform_impl.h
index d66299eca6ff6d67e7767a82b5e8e2a5154649ca..32f9007c7e13070a6cc069b61b7fe02c2f089cfd 100644
--- a/content/utility/utility_blink_platform_impl.h
+++ b/content/utility/utility_blink_platform_impl.h
@@ -5,8 +5,9 @@
#ifndef CONTENT_UTILITY_UTILITY_BLINK_PLATFORM_IMPL_H_
#define CONTENT_UTILITY_UTILITY_BLINK_PLATFORM_IMPL_H_
+#include <memory>
+
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "content/child/blink_platform_impl.h"
namespace content {
@@ -22,7 +23,7 @@ class UtilityBlinkPlatformImpl : public BlinkPlatformImpl {
blink::WebThread* currentThread() override;
private:
- scoped_ptr<WebThreadImplForUtilityThread> main_thread_;
+ std::unique_ptr<WebThreadImplForUtilityThread> main_thread_;
DISALLOW_COPY_AND_ASSIGN(UtilityBlinkPlatformImpl);
};
« no previous file with comments | « content/utility/in_process_utility_thread.h ('k') | content/utility/utility_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698