| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 public std::enable_shared_from_this<Notification> | 52 public std::enable_shared_from_this<Notification> |
| 53 { | 53 { |
| 54 friend class FilterEngine; | 54 friend class FilterEngine; |
| 55 protected: | 55 protected: |
| 56 /** | 56 /** |
| 57 * Constructor. | 57 * Constructor. |
| 58 * @param jsValue `JsValue&&` notification JavaScript object. | 58 * @param jsValue `JsValue&&` notification JavaScript object. |
| 59 */ | 59 */ |
| 60 explicit Notification(JsValue&& jsValue); | 60 explicit Notification(JsValue&& jsValue); |
| 61 public: | 61 public: |
| 62 Notification(const Notification&); | |
|
sergei
2017/04/24 18:17:53
do you mind adding src arg in the headers for thes
hub
2017/04/24 19:16:23
Done.
| |
| 63 Notification(Notification&&); | |
| 64 | |
| 65 Notification& operator=(const Notification&); | |
|
sergei
2017/04/24 18:17:53
What about operator=(Notification&& src)?
hub
2017/04/24 19:16:23
Done.
| |
| 66 | |
| 62 /** | 67 /** |
| 63 * Retrieves the type of this notification. | 68 * Retrieves the type of this notification. |
| 64 * @return Type of this notification. | 69 * @return Type of this notification. |
| 65 */ | 70 */ |
| 66 NotificationType GetType() const; | 71 NotificationType GetType() const; |
| 67 | 72 |
| 68 /** | 73 /** |
| 69 * Retrieves the title and message of this notification. | 74 * Retrieves the title and message of this notification. |
| 70 * @return Translated texts. | 75 * @return Translated texts. |
| 71 */ | 76 */ |
| 72 NotificationTexts GetTexts() const; | 77 NotificationTexts GetTexts() const; |
| 73 | 78 |
| 74 /** | 79 /** |
| 75 * Retrieves the URLs which should be mapped to the links in the message. | 80 * Retrieves the URLs which should be mapped to the links in the message. |
| 76 * @return List of links. | 81 * @return List of links. |
| 77 */ | 82 */ |
| 78 std::vector<std::string> GetLinks() const; | 83 std::vector<std::string> GetLinks() const; |
| 79 | 84 |
| 80 /** | 85 /** |
| 81 * Marks this notification as shown. It is only relevant for question | 86 * Marks this notification as shown. It is only relevant for question |
| 82 * notifications. Other notifications are marked automatically. | 87 * notifications. Other notifications are marked automatically. |
| 83 */ | 88 */ |
| 84 void MarkAsShown(); | 89 void MarkAsShown(); |
| 85 private: | 90 private: |
| 86 }; | 91 }; |
| 87 typedef std::shared_ptr<Notification> NotificationPtr; | |
| 88 } | 92 } |
| 89 | 93 |
| 90 #endif | 94 #endif |
| OLD | NEW |