| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_VIEWS_BUBBLE_TRAY_BUBBLE_VIEW_H_ | 5 #ifndef UI_VIEWS_BUBBLE_TRAY_BUBBLE_VIEW_H_ |
| 6 #define UI_VIEWS_BUBBLE_TRAY_BUBBLE_VIEW_H_ | 6 #define UI_VIEWS_BUBBLE_TRAY_BUBBLE_VIEW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "ui/views/bubble/bubble_dialog_delegate.h" | 11 #include "ui/views/bubble/bubble_dialog_delegate.h" |
| 12 #include "ui/views/mouse_watcher.h" | 12 #include "ui/views/mouse_watcher.h" |
| 13 #include "ui/views/views_export.h" | 13 #include "ui/views/views_export.h" |
| 14 | 14 |
| 15 namespace ui { | |
| 16 class LocatedEvent; | |
| 17 } | |
| 18 | |
| 19 namespace views { | 15 namespace views { |
| 20 class View; | 16 class View; |
| 21 class Widget; | 17 class Widget; |
| 22 } | 18 } |
| 23 | 19 |
| 24 namespace views { | 20 namespace views { |
| 25 | 21 |
| 26 namespace internal { | 22 namespace internal { |
| 27 class TrayBubbleBorder; | 23 class TrayBubbleBorder; |
| 28 class TrayBubbleContentMask; | 24 class TrayBubbleContentMask; |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 203 |
| 208 // Used to find any mouse movements. | 204 // Used to find any mouse movements. |
| 209 std::unique_ptr<MouseWatcher> mouse_watcher_; | 205 std::unique_ptr<MouseWatcher> mouse_watcher_; |
| 210 | 206 |
| 211 DISALLOW_COPY_AND_ASSIGN(TrayBubbleView); | 207 DISALLOW_COPY_AND_ASSIGN(TrayBubbleView); |
| 212 }; | 208 }; |
| 213 | 209 |
| 214 } // namespace views | 210 } // namespace views |
| 215 | 211 |
| 216 #endif // UI_VIEWS_BUBBLE_TRAY_BUBBLE_VIEW_H_ | 212 #endif // UI_VIEWS_BUBBLE_TRAY_BUBBLE_VIEW_H_ |
| OLD | NEW |