| Index: cc/trees/layer_tree_host_pixeltest_masks.cc
|
| diff --git a/cc/trees/layer_tree_host_pixeltest_masks.cc b/cc/trees/layer_tree_host_pixeltest_masks.cc
|
| index e1ab00eb298481b2931dc385afd990c9cb1fb8d2..5aef5e3e94d7c768fe43c9323e369b3ab6059635 100644
|
| --- a/cc/trees/layer_tree_host_pixeltest_masks.cc
|
| +++ b/cc/trees/layer_tree_host_pixeltest_masks.cc
|
| @@ -20,13 +20,13 @@ class LayerTreeHostMasksPixelTest : public LayerTreePixelTest {};
|
| class MaskContentLayerClient : public ContentLayerClient {
|
| public:
|
| explicit MaskContentLayerClient(const gfx::Size& bounds) : bounds_(bounds) {}
|
| - virtual ~MaskContentLayerClient() {}
|
| + ~MaskContentLayerClient() override {}
|
|
|
| - virtual void DidChangeLayerCanUseLCDText() override {}
|
| + void DidChangeLayerCanUseLCDText() override {}
|
|
|
| - virtual bool FillsBoundsCompletely() const override { return false; }
|
| + bool FillsBoundsCompletely() const override { return false; }
|
|
|
| - virtual void PaintContents(
|
| + void PaintContents(
|
| SkCanvas* canvas,
|
| const gfx::Rect& rect,
|
| ContentLayerClient::GraphicsContextStatus gc_status) override {
|
|
|