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

Unified Diff: third_party/WebKit/Source/core/loader/NavigationScheduler.cpp

Issue 2494333002: Replace wrapUnique(new T(args)) by makeUnique<T>(args) in Blink (Closed)
Patch Set: Created 4 years, 1 month 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/loader/NavigationScheduler.cpp
diff --git a/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp b/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
index a52bf28c0827f5310a0e239a0d70378389b47b14..923e203a1bb4345eba76d38ebc0c295585e49cf5 100644
--- a/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
+++ b/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
@@ -135,7 +135,7 @@ class ScheduledNavigation
bool replacesCurrentItem() const { return m_replacesCurrentItem; }
bool isLocationChange() const { return m_isLocationChange; }
std::unique_ptr<UserGestureIndicator> createUserGestureIndicator() {
- return wrapUnique(new UserGestureIndicator(m_userGestureToken));
+ return makeUnique<UserGestureIndicator>(m_userGestureToken);
}
DEFINE_INLINE_VIRTUAL_TRACE() { visitor->trace(m_originDocument); }

Powered by Google App Engine
This is Rietveld 408576698