| Index: content/renderer/gpu/compositor_software_output_device.h
|
| diff --git a/content/renderer/gpu/compositor_software_output_device.h b/content/renderer/gpu/compositor_software_output_device.h
|
| index b57ac26075f26e73e05295227755c6da14e819a6..48fa0507ebe5fec5a276235346c590c4dda29ba9 100644
|
| --- a/content/renderer/gpu/compositor_software_output_device.h
|
| +++ b/content/renderer/gpu/compositor_software_output_device.h
|
| @@ -29,16 +29,16 @@ class CompositorSoftwareOutputDevice
|
| NON_EXPORTED_BASE(public base::NonThreadSafe) {
|
| public:
|
| CompositorSoftwareOutputDevice();
|
| - virtual ~CompositorSoftwareOutputDevice();
|
| + ~CompositorSoftwareOutputDevice() override;
|
|
|
| - virtual void Resize(const gfx::Size& pixel_size, float scale_factor) override;
|
| + void Resize(const gfx::Size& 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 EnsureBackbuffer() override;
|
| - virtual void DiscardBackbuffer() override;
|
| + SkCanvas* BeginPaint(const gfx::Rect& damage_rect) override;
|
| + void EndPaint(cc::SoftwareFrameData* frame_data) override;
|
| + void EnsureBackbuffer() override;
|
| + void DiscardBackbuffer() override;
|
|
|
| - virtual void ReclaimSoftwareFrame(unsigned id) override;
|
| + void ReclaimSoftwareFrame(unsigned id) override;
|
|
|
| private:
|
| // Internal buffer class that manages shared memory lifetime and ownership.
|
|
|