Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / extensions / renderer / script_context.h
index 88b596a..8d6f853 100644 (file)
@@ -38,7 +38,7 @@ class ScriptContext : public RequestSender::Source, public gin::Runner {
                 Feature::Context context_type,
                 const Extension* effective_extension,
                 Feature::Context effective_context_type);
-  virtual ~ScriptContext();
+  ~ScriptContext() override;
 
   // Clears the WebFrame for this contexts and invalidates the associated
   // ModuleSystem.
@@ -133,21 +133,21 @@ class ScriptContext : public RequestSender::Source, public gin::Runner {
                                       bool match_about_blank);
 
   // RequestSender::Source implementation.
-  virtual ScriptContext* GetContext() OVERRIDE;
-  virtual void OnResponseReceived(const std::string& name,
-                                  int request_id,
-                                  bool success,
-                                  const base::ListValue& response,
-                                  const std::string& error) OVERRIDE;
+  ScriptContext* GetContext() override;
+  void OnResponseReceived(const std::string& name,
+                          int request_id,
+                          bool success,
+                          const base::ListValue& response,
+                          const std::string& error) override;
 
   // gin::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;
 
  protected:
   // The v8 context the bindings are accessible to.