Index: shell/src/GcCommand.h |
=================================================================== |
--- a/shell/src/GcCommand.h |
+++ b/shell/src/GcCommand.h |
@@ -4,18 +4,18 @@ |
#include <AdblockPlus.h> |
#include <string> |
#include "Command.h" |
class GcCommand : public Command |
{ |
public: |
- explicit GcCommand(AdblockPlus::JsEngine& jsEngine); |
+ explicit GcCommand(AdblockPlus::JsEnginePtr jsEngine); |
void operator()(const std::string& arguments); |
std::string GetDescription() const; |
std::string GetUsage() const; |
private: |
- AdblockPlus::JsEngine& jsEngine; |
+ AdblockPlus::JsEnginePtr jsEngine; |
}; |
#endif |