Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / extensions / renderer / module_system.h
index 4ab628f..51ecc95 100644 (file)
@@ -72,7 +72,7 @@ class ModuleSystem : public ObjectBackedNativeHandler,
 
   // |source_map| is a weak pointer.
   ModuleSystem(ScriptContext* context, SourceMap* source_map);
-  virtual ~ModuleSystem();
+  ~ModuleSystem() override;
 
   // Require the specified module. This is the equivalent of calling
   // require('module_name') from the loaded JS files.
@@ -143,7 +143,7 @@ class ModuleSystem : public ObjectBackedNativeHandler,
 
  protected:
   friend class ScriptContext;
-  virtual void Invalidate() OVERRIDE;
+  void Invalidate() override;
 
  private:
   typedef std::map<std::string, linked_ptr<NativeHandler> > NativeHandlerMap;
@@ -202,9 +202,9 @@ class ModuleSystem : public ObjectBackedNativeHandler,
       v8::Handle<v8::Value> value);
 
   // gin::ModuleRegistryObserver overrides.
-  virtual void OnDidAddPendingModule(
+  void OnDidAddPendingModule(
       const std::string& id,
-      const std::vector<std::string>& dependencies) OVERRIDE;
+      const std::vector<std::string>& dependencies) override;
 
   ScriptContext* context_;