| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_ | |
| 6 #define CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_ | |
| 7 | |
| 8 #include "chrome/browser/ui/views/tabs/window_finder.h" | |
| 9 | |
| 10 class WindowFinderMus : public WindowFinder { | |
| 11 public: | |
| 12 WindowFinderMus(); | |
| 13 ~WindowFinderMus() override; | |
| 14 | |
| 15 // Overridden from WindowFinder: | |
| 16 gfx::NativeWindow GetLocalProcessWindowAtPoint( | |
| 17 const gfx::Point& screen_point, | |
| 18 const std::set<gfx::NativeWindow>& ignore) override; | |
| 19 | |
| 20 private: | |
| 21 DISALLOW_COPY_AND_ASSIGN(WindowFinderMus); | |
| 22 }; | |
| 23 | |
| 24 #endif // CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_ | |
| OLD | NEW |