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

Unified Diff: src/Notification.cpp

Issue 29419629: Issue 5164 - Remove NotificationPtr (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Added move assignment operator. Created April 24, 2017, 7:08 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
Index: src/Notification.cpp
===================================================================
--- a/src/Notification.cpp
+++ b/src/Notification.cpp
@@ -52,21 +52,43 @@
if (notificationTypeIterator == notificationTypes.end())
{
return NotificationType::NOTIFICATION_TYPE_INFORMATION;
}
return notificationTypeIterator->first;
}
}
+Notification::Notification(const Notification& src)
+ : JsValue(src)
+{
+}
+
+Notification::Notification(Notification&& src)
+ : JsValue(std::move(src))
+{
+}
+
Notification::Notification(JsValue&& jsValue)
: JsValue(std::move(jsValue))
{
}
+Notification& Notification::operator=(const Notification& src)
+{
+ *this = src;
+ return *this;
+}
+
+Notification& Notification::operator=(Notification&& src)
+{
+ *this = std::move(src);
sergei 2017/04/24 19:28:15 It will cause an infinite recursion. It should be
hub 2017/04/24 20:17:04 oops. same with the assignment (copy).
+ return *this;
+}
+
NotificationType Notification::GetType() const
{
return StringToNotificationType(GetProperty("type").AsString());
}
NotificationTexts Notification::GetTexts() const
{
JsValue jsTexts = jsEngine->Evaluate("API.getNotificationTexts").Call(*this);

Powered by Google App Engine
This is Rietveld