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

Unified Diff: third_party/WebKit/Source/core/frame/SettingsDelegate.cpp

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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
Index: third_party/WebKit/Source/core/frame/SettingsDelegate.cpp
diff --git a/third_party/WebKit/Source/core/frame/SettingsDelegate.cpp b/third_party/WebKit/Source/core/frame/SettingsDelegate.cpp
index 71236bed68d79714facd7f64df345ed41eb7a557..1b7c22181aa4af8a18f3288f2aedddf4e1a58e58 100644
--- a/third_party/WebKit/Source/core/frame/SettingsDelegate.cpp
+++ b/third_party/WebKit/Source/core/frame/SettingsDelegate.cpp
@@ -31,10 +31,11 @@
#include "core/frame/SettingsDelegate.h"
#include "core/frame/Settings.h"
+#include <memory>
namespace blink {
-SettingsDelegate::SettingsDelegate(PassOwnPtr<Settings> settings)
+SettingsDelegate::SettingsDelegate(std::unique_ptr<Settings> settings)
: m_settings(std::move(settings))
{
if (m_settings)
« no previous file with comments | « third_party/WebKit/Source/core/frame/SettingsDelegate.h ('k') | third_party/WebKit/Source/core/frame/TopControls.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698