Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / xwalk / experimental / native_file_system / native_file_system_extension.h
index b005ccc..6eca012 100644 (file)
@@ -26,7 +26,7 @@ class NativeFileSystemExtension : public XWalkExtension {
   virtual ~NativeFileSystemExtension();
 
   // XWalkExtension implementation.
-  virtual XWalkExtensionInstance* CreateInstance() OVERRIDE;
+  XWalkExtensionInstance* CreateInstance() override;
 
  private:
   content::RenderProcessHost* host_;
@@ -37,8 +37,8 @@ class NativeFileSystemInstance : public XWalkExtensionInstance {
   explicit NativeFileSystemInstance(content::RenderProcessHost* host);
 
   // XWalkExtensionInstance implementation.
-  virtual void HandleMessage(scoped_ptr<base::Value> msg) OVERRIDE;
-  virtual void HandleSyncMessage(scoped_ptr<base::Value> msg) OVERRIDE;
+  void HandleMessage(scoped_ptr<base::Value> msg) override;
+  void HandleSyncMessage(scoped_ptr<base::Value> msg) override;
 
  private:
   XWalkExtensionFunctionHandler handler_;