Index: gin/shell_runner.h |
diff --git a/gin/shell_runner.h b/gin/shell_runner.h |
index ca88a5d2635bd6ea1d7810c26e3dc9ff93a5b283..9a5b4ef421d7cf369fafaa4f3b9c54d41216b93d 100644 |
--- a/gin/shell_runner.h |
+++ b/gin/shell_runner.h |
@@ -37,19 +37,19 @@ class GIN_EXPORT ShellRunnerDelegate { |
class GIN_EXPORT ShellRunner : public Runner { |
public: |
ShellRunner(ShellRunnerDelegate* delegate, v8::Isolate* isolate); |
- virtual ~ShellRunner(); |
+ ~ShellRunner() override; |
// Before running script in this context, you'll need to enter the runner's |
// context by creating an instance of Runner::Scope on the stack. |
// Runner overrides: |
- virtual void Run(const std::string& source, |
- const std::string& resource_name) override; |
- virtual v8::Handle<v8::Value> Call(v8::Handle<v8::Function> function, |
- v8::Handle<v8::Value> receiver, |
- int argc, |
- v8::Handle<v8::Value> argv[]) override; |
- virtual ContextHolder* GetContextHolder() override; |
+ void Run(const std::string& source, |
+ const std::string& resource_name) override; |
+ v8::Handle<v8::Value> Call(v8::Handle<v8::Function> function, |
+ v8::Handle<v8::Value> receiver, |
+ int argc, |
+ v8::Handle<v8::Value> argv[]) override; |
+ ContextHolder* GetContextHolder() override; |
private: |
friend class Scope; |