Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / ui / views / test / test_views.h
index be6f778..f2dc283 100644 (file)
@@ -14,9 +14,9 @@ namespace views {
 class StaticSizedView : public View {
  public:
   explicit StaticSizedView(const gfx::Size& size);
-  virtual ~StaticSizedView();
+  ~StaticSizedView() override;
 
-  virtual gfx::Size GetPreferredSize() const OVERRIDE;
+  gfx::Size GetPreferredSize() const override;
 
  private:
   gfx::Size size_;
@@ -28,12 +28,12 @@ class StaticSizedView : public View {
 class ProportionallySizedView : public View {
  public:
   explicit ProportionallySizedView(int factor);
-  virtual ~ProportionallySizedView();
+  ~ProportionallySizedView() override;
 
   void set_preferred_width(int width) { preferred_width_ = width; }
 
-  virtual int GetHeightForWidth(int w) const OVERRIDE;
-  virtual gfx::Size GetPreferredSize() const OVERRIDE;
+  int GetHeightForWidth(int w) const override;
+  gfx::Size GetPreferredSize() const override;
 
  private:
   // The multiplicative factor between width and height, i.e.