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

Delta Between Two Patch Sets: Shared/PluginTypedef.h

Issue 9998007: Initial libadblockplus integration (Closed)
Left Patch Set: More integration, reflecting latest libadblockplus changes Created April 9, 2013, 5:48 a.m.
Right Patch Set: Whitelisting management Created April 11, 2013, 9:06 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « Shared/PluginTabBase.cpp ('k') | Shared/PluginUserSettings.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
(no file at all)
1 #ifndef _PLUGIN_TYPEDEF_H_ 1 #ifndef _PLUGIN_TYPEDEF_H_
2 #define _PLUGIN_TYPEDEF_H_ 2 #define _PLUGIN_TYPEDEF_H_
3 3
4 #ifdef SUPPORT_FILTER
5
6 // Filter URL list (url -> version)
7 typedef std::map<CString, int> TFilterUrlList;
8
9 // Filter file list (filename -> download path)
10 typedef std::set<std::pair<CString,CString> > TFilterFileList;
11
12 #endif // SUPPORT_FILTER
13
14
15 #ifdef SUPPORT_WHITELIST
16
17 // Domain list (domain -> reason)
18 typedef std::map<CString, int> TDomainList;
19
20 // Domain history (domain -> reason)
21 typedef std::vector<std::pair<CString, int> > TDomainHistory;
22
23 #endif // SUPPORT_WHITELIST
24 4
25 5
26 #endif // _PLUGIN_TYPEDEF_H_ 6 #endif // _PLUGIN_TYPEDEF_H_
LEFTRIGHT

Powered by Google App Engine
This is Rietveld