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

Side by Side Diff: compiled/filter/Filter.h

Issue 29383816: Issue 4989 - [emscripten] Move filter class files into a separate directory (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Created March 14, 2017, 3:34 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/ElemHideFilter.cpp ('k') | compiled/filter/Filter.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 #pragma once 1 #pragma once
2 2
3 #include <vector> 3 #include <vector>
4 4
5 #include "String.h" 5 #include "../String.h"
6 #include "intrusive_ptr.h" 6 #include "../intrusive_ptr.h"
7 #include "debug.h" 7 #include "../debug.h"
8 8
9 class Filter : public ref_counted 9 class Filter : public ref_counted
10 { 10 {
11 protected: 11 protected:
12 OwnedString mText; 12 OwnedString mText;
13 13
14 public: 14 public:
15 enum Type 15 enum Type
16 { 16 {
17 UNKNOWN = 0, 17 UNKNOWN = 0,
(...skipping 19 matching lines...) Expand all
37 { 37 {
38 return mText; 38 return mText;
39 } 39 }
40 40
41 EMSCRIPTEN_KEEPALIVE OwnedString Serialize() const; 41 EMSCRIPTEN_KEEPALIVE OwnedString Serialize() const;
42 42
43 static EMSCRIPTEN_KEEPALIVE Filter* FromText(DependentString& text); 43 static EMSCRIPTEN_KEEPALIVE Filter* FromText(DependentString& text);
44 }; 44 };
45 45
46 typedef intrusive_ptr<Filter> FilterPtr; 46 typedef intrusive_ptr<Filter> FilterPtr;
OLDNEW
« no previous file with comments | « compiled/filter/ElemHideFilter.cpp ('k') | compiled/filter/Filter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld