| Index: chrome/browser/ui/views/tabs/window_finder_win.cc
|
| diff --git a/chrome/browser/ui/views/tabs/window_finder_win.cc b/chrome/browser/ui/views/tabs/window_finder_win.cc
|
| index 33d401f01df2bafcc52f172c94939711c16b1245..d2cf4db2f9de5e26a5543503dc08ab552b84cef2 100644
|
| --- a/chrome/browser/ui/views/tabs/window_finder_win.cc
|
| +++ b/chrome/browser/ui/views/tabs/window_finder_win.cc
|
| @@ -72,7 +72,7 @@ class TopMostFinder : public BaseWindowFinder {
|
| return finder.is_top_most_;
|
| }
|
|
|
| - virtual bool ShouldStopIterating(HWND hwnd) {
|
| + bool ShouldStopIterating(HWND hwnd) override {
|
| if (hwnd == target_) {
|
| // Window is topmost, stop iterating.
|
| is_top_most_ = true;
|
| @@ -176,7 +176,7 @@ class LocalProcessWindowFinder : public BaseWindowFinder {
|
| }
|
|
|
| protected:
|
| - virtual bool ShouldStopIterating(HWND hwnd) {
|
| + bool ShouldStopIterating(HWND hwnd) override {
|
| RECT r;
|
| if (IsWindowVisible(hwnd) && GetWindowRect(hwnd, &r) &&
|
| PtInRect(&r, screen_loc_.ToPOINT())) {
|
|
|