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

Side by Side Diff: shell/src/GcCommand.h

Issue 9763002: Add command to initiate garbage collection (Closed)
Patch Set: Created March 11, 2013, 11:07 a.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 | « shell/shell.gyp ('k') | shell/src/GcCommand.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef GC_COMMAND_H
2 #define GC_COMMAND_H
3
4 #include <AdblockPlus.h>
5 #include <string>
6
7 #include "Command.h"
8
9 class GcCommand : public Command
10 {
11 public:
12 GcCommand(AdblockPlus::JsEngine& jsEngine);
13 void operator()(const std::string& arguments);
14 std::string GetDescription() const;
15 std::string GetUsage() const;
16
17 private:
18 AdblockPlus::JsEngine& jsEngine;
19 };
20
21 #endif
OLDNEW
« no previous file with comments | « shell/shell.gyp ('k') | shell/src/GcCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld