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

Delta Between Two Patch Sets: include/AdblockPlus/Notification.h

Issue 29419629: Issue 5164 - Remove NotificationPtr (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Left Patch Set: Added arg name to declaration + doc comments Created April 24, 2017, 6:49 p.m.
Right Patch Set: Call the inherited assignment operator properly Created April 24, 2017, 8:16 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « include/AdblockPlus/FilterEngine.h ('k') | src/FilterEngine.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 * Move constructor 68 * Move constructor
69 */ 69 */
70 Notification(Notification&& src); 70 Notification(Notification&& src);
71 71
72 /** 72 /**
73 * Assignment operator 73 * Assignment operator
74 */ 74 */
75 Notification& operator=(const Notification& src); 75 Notification& operator=(const Notification& src);
76 76
77 /** 77 /**
78 * Move assignment operator
79 */
80 Notification& operator=(Notification&& src);
81
82 /**
78 * Retrieves the type of this notification. 83 * Retrieves the type of this notification.
79 * @return Type of this notification. 84 * @return Type of this notification.
80 */ 85 */
81 NotificationType GetType() const; 86 NotificationType GetType() const;
82 87
83 /** 88 /**
84 * Retrieves the title and message of this notification. 89 * Retrieves the title and message of this notification.
85 * @return Translated texts. 90 * @return Translated texts.
86 */ 91 */
87 NotificationTexts GetTexts() const; 92 NotificationTexts GetTexts() const;
88 93
89 /** 94 /**
90 * Retrieves the URLs which should be mapped to the links in the message. 95 * Retrieves the URLs which should be mapped to the links in the message.
91 * @return List of links. 96 * @return List of links.
92 */ 97 */
93 std::vector<std::string> GetLinks() const; 98 std::vector<std::string> GetLinks() const;
94 99
95 /** 100 /**
96 * Marks this notification as shown. It is only relevant for question 101 * Marks this notification as shown. It is only relevant for question
97 * notifications. Other notifications are marked automatically. 102 * notifications. Other notifications are marked automatically.
98 */ 103 */
99 void MarkAsShown(); 104 void MarkAsShown();
100 private: 105 private:
101 }; 106 };
102 } 107 }
103 108
104 #endif 109 #endif
LEFTRIGHT

Powered by Google App Engine
This is Rietveld