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

Unified Diff: third_party/WebKit/Source/web/DateTimeChooserImpl.h

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/web/DateTimeChooserImpl.h
diff --git a/third_party/WebKit/Source/web/DateTimeChooserImpl.h b/third_party/WebKit/Source/web/DateTimeChooserImpl.h
index 1949bf21fcf3e522d765e26d13e2371c375291e1..419cbd70513240582e0d25661ca8960c91783a48 100644
--- a/third_party/WebKit/Source/web/DateTimeChooserImpl.h
+++ b/third_party/WebKit/Source/web/DateTimeChooserImpl.h
@@ -33,6 +33,7 @@
#include "core/html/forms/DateTimeChooser.h"
#include "core/page/PagePopupClient.h"
+#include <memory>
namespace blink {
@@ -67,7 +68,7 @@ private:
Member<DateTimeChooserClient> m_client;
PagePopup* m_popup;
DateTimeChooserParameters m_parameters;
- OwnPtr<Locale> m_locale;
+ std::unique_ptr<Locale> m_locale;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698