| Index: ui/views/view_targeter_unittest.cc
|
| diff --git a/ui/views/view_targeter_unittest.cc b/ui/views/view_targeter_unittest.cc
|
| index 15d65ad3ead1d7140832c23e766e6cf102c2e0bd..a3acb462b895de8ba57b1c90f3ab632bb4db3e9a 100644
|
| --- a/ui/views/view_targeter_unittest.cc
|
| +++ b/ui/views/view_targeter_unittest.cc
|
| @@ -34,7 +34,7 @@ class TestingView : public View, public ViewTargeterDelegate {
|
| }
|
|
|
| // View:
|
| - virtual bool CanProcessEventsWithinSubtree() const OVERRIDE {
|
| + virtual bool CanProcessEventsWithinSubtree() const override {
|
| return can_process_events_within_subtree_;
|
| }
|
|
|
| @@ -58,7 +58,7 @@ class TestMaskedView : public View, public MaskedTargeterDelegate {
|
|
|
| private:
|
| // MaskedTargeterDelegate:
|
| - virtual bool GetHitTestMask(gfx::Path* mask) const OVERRIDE {
|
| + virtual bool GetHitTestMask(gfx::Path* mask) const override {
|
| DCHECK(mask);
|
| SkScalar w = SkIntToScalar(width());
|
| SkScalar h = SkIntToScalar(height());
|
|
|