Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / renderer / web_ui_runner.h
index 4af8013..2f17ab5 100644 (file)
@@ -18,18 +18,16 @@ class WebUIRunner : public gin::Runner {
  public:
   // Does not take ownership of ContextHolder.
   WebUIRunner(blink::WebFrame* frame, gin::ContextHolder* context_holder);
-  virtual ~WebUIRunner();
-
-  void RegisterBuiltinModules();
+  ~WebUIRunner() override;
 
   // 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 gin::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;
+  gin::ContextHolder* GetContextHolder() override;
 
  private:
   // Frame to execute script in.