Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/Notification.cpp

Issue 5598762307158016: Issue 1550 - Get rid of V8ValueHolder.h (Closed)
Patch Set: rebase Created May 20, 2016, 3:20 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/JsValue.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/Notification.cpp
diff --git a/src/Notification.cpp b/src/Notification.cpp
index 0b1b2f7d6c79083438dd663b0d24a71f75f35edc..b56fbe2825179b65aededc7d8a19364d3e5db232 100644
--- a/src/Notification.cpp
+++ b/src/Notification.cpp
@@ -57,8 +57,8 @@ namespace
}
}
-Notification::Notification(const JsValuePtr& jsValue)
- : JsValue(jsValue)
+Notification::Notification(JsValue&& jsValue)
+ : JsValue(std::move(jsValue))
{
}
« no previous file with comments | « src/JsValue.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld