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

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

Issue 5163715573841920: Issue 768 - Switch from TR1 to C++11 (Closed)
Left Patch Set: rebase Created Aug. 5, 2015, 10:38 a.m.
Right Patch Set: fix including of <memory> Created Aug. 7, 2015, 6:07 a.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/LogSystem.h ('k') | include/AdblockPlus/WebRequest.h » ('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-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 #ifndef ADBLOCK_PLUS_NOTIFICATION_H 18 #ifndef ADBLOCK_PLUS_NOTIFICATION_H
19 #define ADBLOCK_PLUS_NOTIFICATION_H 19 #define ADBLOCK_PLUS_NOTIFICATION_H
20 20
21 #include <string> 21 #include <string>
22 #include <vector> 22 #include <vector>
23 #include <memory>
23 24
Wladimir Palant 2015/08/05 11:19:40 You are assuming that <vector> will include <memor
sergei 2015/08/06 07:35:30 Here the same, <memory> is not included by <vector
Wladimir Palant 2015/08/06 12:24:54 Ok, that's even worse then - very non-obvious and
sergei 2015/08/07 06:29:39 Yes, sure.
24 namespace AdblockPlus 25 namespace AdblockPlus
25 { 26 {
26 class FilterEngine; 27 class FilterEngine;
27 /** 28 /**
28 * Possible notification types. 29 * Possible notification types.
29 */ 30 */
30 enum NotificationType 31 enum NotificationType
31 { 32 {
32 NOTIFICATION_TYPE_INFORMATION, 33 NOTIFICATION_TYPE_INFORMATION,
33 NOTIFICATION_TYPE_QUESTION, 34 NOTIFICATION_TYPE_QUESTION,
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 void MarkAsShown(); 80 void MarkAsShown();
80 private: 81 private:
81 std::string title; 82 std::string title;
82 std::string message; 83 std::string message;
83 NotificationType type; 84 NotificationType type;
84 }; 85 };
85 typedef std::shared_ptr<Notification> NotificationPtr; 86 typedef std::shared_ptr<Notification> NotificationPtr;
86 } 87 }
87 88
88 #endif 89 #endif
LEFTRIGHT

Powered by Google App Engine
This is Rietveld