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

Side by Side Diff: compiled/filter/CommentFilter.cpp

Issue 29721753: Issue 6180 - use ABP_TEXT everywhere in order to let String be a UTF-8 string (Closed) Base URL: https://github.com/adblockplus/adblockpluscore.git@adb2678354813ce5b6de095072954c5a784a7bc4
Patch Set: rebase Created March 15, 2018, 1:53 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « compiled/filter/ActiveFilter.cpp ('k') | compiled/filter/ElemHideBase.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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-present eyeo GmbH 3 * Copyright (C) 2006-present 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 #include "CommentFilter.h" 18 #include "CommentFilter.h"
19 19
20 ABP_NS_USING 20 ABP_NS_USING
21 21
22 CommentFilter::CommentFilter(const String& text) 22 CommentFilter::CommentFilter(const String& text)
23 : Filter(classType, text) 23 : Filter(classType, text)
24 { 24 {
25 } 25 }
26 26
27 Filter::Type CommentFilter::Parse(const String& text) 27 Filter::Type CommentFilter::Parse(const String& text)
28 { 28 {
29 if (text.length() && text[0] == u'!') 29 if (text.length() && text[0] == ABP_TEXT('!'))
30 return Type::COMMENT; 30 return Type::COMMENT;
31 else 31 else
32 return Type::UNKNOWN; 32 return Type::UNKNOWN;
33 } 33 }
34 34
35 CommentFilter* CommentFilter::Create(const String& text) 35 CommentFilter* CommentFilter::Create(const String& text)
36 { 36 {
37 Type type = Parse(text); 37 Type type = Parse(text);
38 if (type == Type::COMMENT) 38 if (type == Type::COMMENT)
39 return new CommentFilter(text); 39 return new CommentFilter(text);
40 else 40 else
41 return nullptr; 41 return nullptr;
42 } 42 }
OLDNEW
« no previous file with comments | « compiled/filter/ActiveFilter.cpp ('k') | compiled/filter/ElemHideBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld