| 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_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_COCOA_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ | 6 #define CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_COCOA_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "components/bubble/bubble_ui.h" | 13 #include "components/bubble/bubble_ui.h" |
| 14 | 14 |
| 15 class Browser; | 15 class Browser; |
| 16 @class ChooserBubbleUiController; | 16 @class ChooserBubbleUiController; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 35 void OnBubbleClosing(); | 35 void OnBubbleClosing(); |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 Browser* browser_; // Weak. | 38 Browser* browser_; // Weak. |
| 39 // Cocoa-side chooser bubble UI controller. Weak, as it will close itself. | 39 // Cocoa-side chooser bubble UI controller. Weak, as it will close itself. |
| 40 ChooserBubbleUiController* chooser_bubble_ui_controller_; | 40 ChooserBubbleUiController* chooser_bubble_ui_controller_; |
| 41 | 41 |
| 42 DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiCocoa); | 42 DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiCocoa); |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 #endif // CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ | 45 #endif // CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_COCOA_H_ |
| OLD | NEW |