| 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_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ | 6 #define CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 ChooserBubbleDelegate* chooser_bubble_delegate); | 25 ChooserBubbleDelegate* chooser_bubble_delegate); |
| 26 ~ChooserBubbleUiCocoa() override; | 26 ~ChooserBubbleUiCocoa() override; |
| 27 | 27 |
| 28 // BubbleUi: | 28 // BubbleUi: |
| 29 void Show(BubbleReference bubble_reference) override; | 29 void Show(BubbleReference bubble_reference) override; |
| 30 void Close() override; | 30 void Close() override; |
| 31 void UpdateAnchorPosition() override; | 31 void UpdateAnchorPosition() override; |
| 32 | 32 |
| 33 // ChooserBubbleDelegate::Observer: | 33 // ChooserBubbleDelegate::Observer: |
| 34 void OnOptionsInitialized() override; | 34 void OnOptionsInitialized() override; |
| 35 void OnOptionAdded(int index) override; | 35 void OnOptionAdded(size_t index) override; |
| 36 void OnOptionRemoved(int index) override; | 36 void OnOptionRemoved(size_t index) override; |
| 37 | 37 |
| 38 // Called when |chooser_bubble_ui_controller_| is closing. | 38 // Called when |chooser_bubble_ui_controller_| is closing. |
| 39 void OnBubbleClosing(); | 39 void OnBubbleClosing(); |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 Browser* browser_; // Weak. | 42 Browser* browser_; // Weak. |
| 43 ChooserBubbleDelegate* chooser_bubble_delegate_; // Weak. | 43 ChooserBubbleDelegate* chooser_bubble_delegate_; // Weak. |
| 44 // Cocoa-side chooser bubble UI controller. Weak, as it will close itself. | 44 // Cocoa-side chooser bubble UI controller. Weak, as it will close itself. |
| 45 ChooserBubbleUiController* chooser_bubble_ui_controller_; | 45 ChooserBubbleUiController* chooser_bubble_ui_controller_; |
| 46 | 46 |
| 47 DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiCocoa); | 47 DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiCocoa); |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 #endif // CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ | 50 #endif // CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ |
| OLD | NEW |