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

Unified Diff: shell/src/MatchesCommand.h

Issue 10016005: Add API calls and stubs for filter matching and subscription management (Closed)
Patch Set: Created April 3, 2013, 12:42 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: shell/src/MatchesCommand.h
===================================================================
--- a/shell/src/MatchesCommand.h
+++ b/shell/src/MatchesCommand.h
@@ -1,15 +1,20 @@
#ifndef MATCHES_COMMAND_H
#define MATCHES_COMMAND_H
+#include <AdblockPlus.h>
+
#include "Command.h"
class MatchesCommand : public Command
{
public:
- MatchesCommand();
+ MatchesCommand(AdblockPlus::FilterEngine& filterEngine);
void operator()(const std::string& arguments);
std::string GetDescription() const;
std::string GetUsage() const;
+
+private:
+ AdblockPlus::FilterEngine& filterEngine;
};
#endif

Powered by Google App Engine
This is Rietveld