Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / api / i18n / default_locale_handler.h
index bc25f57..d0f795e 100644 (file)
@@ -24,19 +24,19 @@ struct LocaleInfo : public Extension::ManifestData {
 class DefaultLocaleHandler : public ManifestHandler {
  public:
   DefaultLocaleHandler();
-  virtual ~DefaultLocaleHandler();
+  ~DefaultLocaleHandler() override;
 
-  virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE;
+  bool Parse(Extension* extension, base::string16* error) override;
 
   // Validates locale info. Doesn't check if messages.json files are valid.
-  virtual bool Validate(const Extension* extension,
-                        std::string* error,
-                        std::vector<InstallWarning>* warnings) const OVERRIDE;
+  bool Validate(const Extension* extension,
+                std::string* error,
+                std::vector<InstallWarning>* warnings) const override;
 
-  virtual bool AlwaysValidateForType(Manifest::Type type) const OVERRIDE;
+  bool AlwaysValidateForType(Manifest::Type type) const override;
 
  private:
-  virtual const std::vector<std::string> Keys() const OVERRIDE;
+  const std::vector<std::string> Keys() const override;
 
   DISALLOW_COPY_AND_ASSIGN(DefaultLocaleHandler);
 };