Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / manifest_handlers / content_scripts_handler.h
index 6b7e446..295a59b 100644 (file)
@@ -17,7 +17,7 @@ class URLPatternSet;
 
 struct ContentScriptsInfo : public Extension::ManifestData {
   ContentScriptsInfo();
-  virtual ~ContentScriptsInfo();
+  ~ContentScriptsInfo() override;
 
   // Paths to the content scripts the extension contains (possibly empty).
   UserScriptList content_scripts;
@@ -38,15 +38,15 @@ struct ContentScriptsInfo : public Extension::ManifestData {
 class ContentScriptsHandler : public ManifestHandler {
  public:
   ContentScriptsHandler();
-  virtual ~ContentScriptsHandler();
+  ~ContentScriptsHandler() override;
 
-  virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE;
-  virtual bool Validate(const Extension* extension,
-                        std::string* error,
-                        std::vector<InstallWarning>* warnings) const OVERRIDE;
+  bool Parse(Extension* extension, base::string16* error) override;
+  bool Validate(const Extension* extension,
+                std::string* error,
+                std::vector<InstallWarning>* warnings) const override;
 
  private:
-  virtual const std::vector<std::string> Keys() const OVERRIDE;
+  const std::vector<std::string> Keys() const override;
 
   DISALLOW_COPY_AND_ASSIGN(ContentScriptsHandler);
 };