| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_VIEW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "components/bubble/bubble_ui.h" | 11 #include "components/bubble/bubble_ui.h" |
| 12 #include "ui/views/bubble/bubble_border.h" | 12 #include "ui/views/bubble/bubble_border.h" |
| 13 | 13 |
| 14 namespace views { | 14 namespace views { |
| 15 class View; | 15 class View; |
| 16 } | 16 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 39 views::View* GetAnchorView(); | 39 views::View* GetAnchorView(); |
| 40 views::BubbleBorder::Arrow GetAnchorArrow(); | 40 views::BubbleBorder::Arrow GetAnchorArrow(); |
| 41 | 41 |
| 42 Browser* browser_; // Weak. | 42 Browser* browser_; // Weak. |
| 43 // Weak. Owned by its parent view. | 43 // Weak. Owned by its parent view. |
| 44 ChooserBubbleUiViewDelegate* chooser_bubble_ui_view_delegate_; | 44 ChooserBubbleUiViewDelegate* chooser_bubble_ui_view_delegate_; |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiView); | 46 DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiView); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_VIEW_H_ | 49 #endif // CHROME_BROWSER_UI_VIEWS_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_VIEW_H_ |
| OLD | NEW |