| Index: chrome/browser/ui/cocoa/base_bubble_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/base_bubble_controller.mm b/chrome/browser/ui/cocoa/base_bubble_controller.mm
|
| index acd7907bbca55b186d0fc7346b88a5765485a1d2..b055f7653a3bbcbd73ef19cf7419b22b088a1b8f 100644
|
| --- a/chrome/browser/ui/cocoa/base_bubble_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/base_bubble_controller.mm
|
| @@ -17,8 +17,8 @@
|
|
|
| @interface BaseBubbleController (Private)
|
| - (void)updateOriginFromAnchor;
|
| -- (void)activateTabWithContents:(TabContents*)newContents
|
| - previousContents:(TabContents*)oldContents
|
| +- (void)activateTabWithContents:(content::WebContents*)newContents
|
| + previousContents:(content::WebContents*)oldContents
|
| atIndex:(NSInteger)index
|
| userGesture:(bool)wasUserGesture;
|
| @end
|
| @@ -276,8 +276,8 @@
|
| [window setFrameOrigin:origin];
|
| }
|
|
|
| -- (void)activateTabWithContents:(TabContents*)newContents
|
| - previousContents:(TabContents*)oldContents
|
| +- (void)activateTabWithContents:(content::WebContents*)newContents
|
| + previousContents:(content::WebContents*)oldContents
|
| atIndex:(NSInteger)index
|
| userGesture:(bool)wasUserGesture {
|
| // The user switched tabs; close.
|
|
|