OLD | NEW |
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "content/public/browser/web_contents_view_delegate.h" | 9 #include "content/public/browser/web_contents_view_delegate.h" |
9 #include "ui/gfx/geometry/rect.h" | 10 #include "ui/gfx/geometry/rect.h" |
10 #include "ui/views/widget/widget.h" | 11 #include "ui/views/widget/widget.h" |
11 | 12 |
12 namespace aura { | 13 namespace aura { |
13 class Window; | 14 class Window; |
14 } | 15 } |
15 | 16 |
16 namespace ui { | 17 namespace ui { |
17 class MouseEvent; | 18 class MouseEvent; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 52 |
52 // A non-owning pointer to the calling window that contains the unzoomed web | 53 // A non-owning pointer to the calling window that contains the unzoomed web |
53 // content bitmap, that we will be sending the GestureEvents received back to. | 54 // content bitmap, that we will be sending the GestureEvents received back to. |
54 const aura::Window* content_; | 55 const aura::Window* content_; |
55 ZoomBubbleView* view_; | 56 ZoomBubbleView* view_; |
56 | 57 |
57 DISALLOW_COPY_AND_ASSIGN(LinkDisambiguationPopup); | 58 DISALLOW_COPY_AND_ASSIGN(LinkDisambiguationPopup); |
58 }; | 59 }; |
59 | 60 |
60 #endif // CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP
_H_ | 61 #endif // CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP
_H_ |
OLD | NEW |