| Index: Source/core/layout/FloatingObjects.cpp
 | 
| diff --git a/Source/core/layout/FloatingObjects.cpp b/Source/core/layout/FloatingObjects.cpp
 | 
| index 778cdf15793e2b624fbc39e02afded7e848e1cb9..8a256450277ada037dfc732736a7d44c29299003 100644
 | 
| --- a/Source/core/layout/FloatingObjects.cpp
 | 
| +++ b/Source/core/layout/FloatingObjects.cpp
 | 
| @@ -140,12 +140,12 @@ public:
 | 
|      {
 | 
|      }
 | 
|  
 | 
| -    virtual ~ComputeFloatOffsetForFloatLayoutAdapter() { }
 | 
| +    ~ComputeFloatOffsetForFloatLayoutAdapter() override { }
 | 
|  
 | 
|      LayoutUnit heightRemaining() const;
 | 
|  
 | 
|  protected:
 | 
| -    virtual bool updateOffsetIfNeeded(const FloatingObject&) override final;
 | 
| +    bool updateOffsetIfNeeded(const FloatingObject&) final;
 | 
|  };
 | 
|  
 | 
|  template <FloatingObject::Type FloatTypeValue>
 | 
| @@ -156,10 +156,10 @@ public:
 | 
|      {
 | 
|      }
 | 
|  
 | 
| -    virtual ~ComputeFloatOffsetForLineLayoutAdapter() { }
 | 
| +    ~ComputeFloatOffsetForLineLayoutAdapter() override { }
 | 
|  
 | 
|  protected:
 | 
| -    virtual bool updateOffsetIfNeeded(const FloatingObject&) override final;
 | 
| +    bool updateOffsetIfNeeded(const FloatingObject&) final;
 | 
|  };
 | 
|  
 | 
|  
 | 
| 
 |