Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / extensions / browser / extension_icon_image.cc
index 14ba290..069dc66 100644 (file)
@@ -55,11 +55,11 @@ class BlankImageSource : public gfx::CanvasImageSource {
   explicit BlankImageSource(const gfx::Size& size_in_dip)
       : CanvasImageSource(size_in_dip, /*is_opaque =*/ false) {
   }
-  virtual ~BlankImageSource() {}
+  ~BlankImageSource() override {}
 
  private:
   // gfx::CanvasImageSource overrides:
-  virtual void Draw(gfx::Canvas* canvas) OVERRIDE {
+  void Draw(gfx::Canvas* canvas) override {
     canvas->DrawColor(SkColorSetARGB(0, 0, 0, 0));
   }
 
@@ -76,13 +76,13 @@ namespace extensions {
 class IconImage::Source : public gfx::ImageSkiaSource {
  public:
   Source(IconImage* host, const gfx::Size& size_in_dip);
-  virtual ~Source();
+  ~Source() override;
 
   void ResetHost();
 
  private:
   // gfx::ImageSkiaSource overrides:
-  virtual gfx::ImageSkiaRep GetImageForScale(float scale) OVERRIDE;
+  gfx::ImageSkiaRep GetImageForScale(float scale) override;
 
   // Used to load images, possibly asynchronously. NULLed out when the IconImage
   // is destroyed.