| Index: chrome/browser/ui/chrome_bubble_manager.cc
|
| diff --git a/chrome/browser/ui/chrome_bubble_manager.cc b/chrome/browser/ui/chrome_bubble_manager.cc
|
| index 62c3f685370288adb73869cc251e270876d6a664..400a1dbd9ca53008ea49802d4f60cb7bce3bf2d0 100644
|
| --- a/chrome/browser/ui/chrome_bubble_manager.cc
|
| +++ b/chrome/browser/ui/chrome_bubble_manager.cc
|
| @@ -99,3 +99,12 @@ void ChromeBubbleManager::NavigationEntryCommitted(
|
| void ChromeBubbleManager::WebContentsDestroyed(content::WebContents* context) {
|
| CloseMatchingBubbles(context, FORCE_CLOSE, BUBBLE_CLOSE_IGNORE);
|
| }
|
| +
|
| +void ChromeBubbleManager::UpdateAnchorPosition(content::WebContents* context) {
|
| + MassUpdateBubbles(context, base::Bind(&ChromeBubbleManager::UpdateBubbleUI,
|
| + this->AsWeakPtr()));
|
| +}
|
| +
|
| +void ChromeBubbleManager::UserDismissBubbles(content::WebContents* context) {
|
| + CloseMatchingBubbles(context, FORCE_CLOSE, BUBBLE_CLOSE_CLOSE);
|
| +}
|
|
|