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

Unified Diff: include/AdblockPlus/Notification.h

Issue 29364548: Issue 4188 - Update libadblockplus-android to use the latest libadblockplus (Closed)
Patch Set: recompiled for libadblockplus git:70ac2462a5e6437b5b1f58455b2e0172c33cc432. Duplicated on gihtub: https://github.com/4ntoine/libadblockplus-binaries/commit/5b9c89920c72f0b980a268bc80b73705c29a034a Created Dec. 5, 2016, 11:20 a.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: include/AdblockPlus/Notification.h
diff --git a/include/AdblockPlus/Notification.h b/include/AdblockPlus/Notification.h
index c3b4fea59593cd949312e8d69971a18ff1801535..d40bbe4c4a4d4eb98771e43576dcf13a372ab9a1 100644
--- a/include/AdblockPlus/Notification.h
+++ b/include/AdblockPlus/Notification.h
@@ -1,6 +1,6 @@
/*
* This file is part of Adblock Plus <https://adblockplus.org/>,
- * Copyright (C) 2006-2015 Eyeo GmbH
+ * Copyright (C) 2006-2016 Eyeo GmbH
*
* Adblock Plus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
@@ -55,9 +55,9 @@ namespace AdblockPlus
protected:
/**
* Constructor.
- * @param jsValue `JsValuePtr` notification JavaScript object.
+ * @param jsValue `JsValue&&` notification JavaScript object.
*/
- explicit Notification(const JsValuePtr& jsValue);
+ explicit Notification(JsValue&& jsValue);
public:
/**
* Retrieves the type of this notification.
@@ -69,7 +69,7 @@ namespace AdblockPlus
* Retrieves the title and message of this notification.
* @return Translated texts.
*/
- NotificationTexts GetTexts();
+ NotificationTexts GetTexts() const;
/**
* Retrieves the URLs which should be mapped to the links in the message.

Powered by Google App Engine
This is Rietveld