Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(592)

Side by Side Diff: chrome/browser/ui/views/tabs/window_finder_mus.h

Issue 2449103004: Refactor WindowFinder definition (Closed)
Patch Set: addressed more of sky's feedback Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_
6 #define CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_
7 7
8 #include "chrome/browser/ui/views/tabs/window_finder.h" 8 #include "chrome/browser/ui/views/tabs/window_finder.h"
9 9
10 class WindowFinderMus : public WindowFinder { 10 bool GetLocalProcessWindowAtPointMus(
sky 2016/10/31 20:32:46 Add description.
tonikitoo 2016/10/31 21:09:13 Done.
11 public: 11 const gfx::Point& screen_point,
12 WindowFinderMus(); 12 const std::set<gfx::NativeWindow>& ignore,
13 ~WindowFinderMus() override; 13 gfx::NativeWindow* out);
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 14
24 #endif // CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_ 15 #endif // CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698