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

Unified Diff: third_party/WebKit/Source/web/WebDOMActivityLogger.cpp

Issue 1916703002: Prepare for move-only PassOwnPtr in the remaining directories. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@core1
Patch Set: Merge with trunk. 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
Index: third_party/WebKit/Source/web/WebDOMActivityLogger.cpp
diff --git a/third_party/WebKit/Source/web/WebDOMActivityLogger.cpp b/third_party/WebKit/Source/web/WebDOMActivityLogger.cpp
index 00060b6f76dbf3ece6b3123341cc1a535066b4a9..71236d1c777c217737b65ad33e9a63608fee21f9 100644
--- a/third_party/WebKit/Source/web/WebDOMActivityLogger.cpp
+++ b/third_party/WebKit/Source/web/WebDOMActivityLogger.cpp
@@ -42,7 +42,7 @@ namespace blink {
class DOMActivityLoggerContainer : public V8DOMActivityLogger {
public:
explicit DOMActivityLoggerContainer(PassOwnPtr<WebDOMActivityLogger> logger)
- : m_domActivityLogger(logger)
+ : m_domActivityLogger(std::move(logger))
{
}

Powered by Google App Engine
This is Rietveld 408576698