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

Side by Side Diff: compiled/library.h

Issue 29721697: Noissue - fix support of namespace, external user-config.h and debug configuration (Closed) Base URL: https://github.com/adblockplus/adblockpluscore.git@caf1800ce0342583de4c0320745f0fdb3b55bd01
Patch Set: get rid of the warning Created March 13, 2018, 6:17 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/debug.h ('k') | compiled/library.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
(...skipping 28 matching lines...) Expand all
39 { 39 {
40 void LogString(const ABP_NS::String& str); 40 void LogString(const ABP_NS::String& str);
41 void LogInteger(int i); 41 void LogInteger(int i);
42 void LogPointer(const void* ptr); 42 void LogPointer(const void* ptr);
43 void LogError(const ABP_NS::String& str); 43 void LogError(const ABP_NS::String& str);
44 char16_t CharToLower(char16_t charCode); 44 char16_t CharToLower(char16_t charCode);
45 void JSNotifyFilterChange(ABP_NS::FilterNotifier::Topic topic, ABP_NS::Filter& filter, 45 void JSNotifyFilterChange(ABP_NS::FilterNotifier::Topic topic, ABP_NS::Filter& filter,
46 ABP_NS::Subscription* subscription, unsigned int position); 46 ABP_NS::Subscription* subscription, unsigned int position);
47 void JSNotifySubscriptionChange(ABP_NS::FilterNotifier::Topic topic, 47 void JSNotifySubscriptionChange(ABP_NS::FilterNotifier::Topic topic,
48 ABP_NS::Subscription& subscription); 48 ABP_NS::Subscription& subscription);
49 RegExpID GenerateRegExp(const ABP_NS::String& regexp, bool matchCase); 49 ABP_NS::RegExpID GenerateRegExp(const ABP_NS::String& regexp, bool matchCase);
50 void DeleteRegExp(RegExpID id); 50 void DeleteRegExp(ABP_NS::RegExpID id);
51 bool TestRegExp(RegExpID id, const ABP_NS::String& str); 51 bool TestRegExp(ABP_NS::RegExpID id, const ABP_NS::String& str);
52 } 52 }
OLDNEW
« no previous file with comments | « compiled/debug.h ('k') | compiled/library.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld