| Index: content/browser/compositor/software_output_device_win.h
 | 
| diff --git a/content/browser/compositor/software_output_device_win.h b/content/browser/compositor/software_output_device_win.h
 | 
| index 85873fb12b6c248b953e643e3b1e9aec1c41db09..a171e8e0fc63df94f45c42ab1da1b44625b4568c 100644
 | 
| --- a/content/browser/compositor/software_output_device_win.h
 | 
| +++ b/content/browser/compositor/software_output_device_win.h
 | 
| @@ -23,13 +23,13 @@ namespace content {
 | 
|  class SoftwareOutputDeviceWin : public cc::SoftwareOutputDevice {
 | 
|   public:
 | 
|    explicit SoftwareOutputDeviceWin(ui::Compositor* compositor);
 | 
| -  virtual ~SoftwareOutputDeviceWin();
 | 
| +  ~SoftwareOutputDeviceWin() override;
 | 
|  
 | 
| -  virtual void Resize(const gfx::Size& viewport_pixel_size,
 | 
| -                      float scale_factor) override;
 | 
| -  virtual SkCanvas* BeginPaint(const gfx::Rect& damage_rect) override;
 | 
| -  virtual void EndPaint(cc::SoftwareFrameData* frame_data) override;
 | 
| -  virtual void CopyToPixels(const gfx::Rect& rect, void* pixels) override;
 | 
| +  void Resize(const gfx::Size& viewport_pixel_size,
 | 
| +              float scale_factor) override;
 | 
| +  SkCanvas* BeginPaint(const gfx::Rect& damage_rect) override;
 | 
| +  void EndPaint(cc::SoftwareFrameData* frame_data) override;
 | 
| +  void CopyToPixels(const gfx::Rect& rect, void* pixels) override;
 | 
|  
 | 
|   private:
 | 
|    HWND hwnd_;
 | 
| 
 |