| 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 9ac37495e0399eac382529cbc875ddc566d36689..fc6738ab590a9b6c51db5915491dd3aa4252b5c6 100644
|
| --- a/chrome/browser/ui/cocoa/base_bubble_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/base_bubble_controller.mm
|
| @@ -18,8 +18,8 @@
|
|
|
| @interface BaseBubbleController (Private)
|
| - (void)updateOriginFromAnchor;
|
| -- (void)activateTabWithContents:(TabContentsWrapper*)newContents
|
| - previousContents:(TabContentsWrapper*)oldContents
|
| +- (void)activateTabWithContents:(TabContents*)newContents
|
| + previousContents:(TabContents*)oldContents
|
| atIndex:(NSInteger)index
|
| userGesture:(bool)wasUserGesture;
|
| @end
|
| @@ -291,8 +291,8 @@ typedef unsigned long long NSEventMask;
|
| [window setFrameOrigin:origin];
|
| }
|
|
|
| -- (void)activateTabWithContents:(TabContentsWrapper*)newContents
|
| - previousContents:(TabContentsWrapper*)oldContents
|
| +- (void)activateTabWithContents:(TabContents*)newContents
|
| + previousContents:(TabContents*)oldContents
|
| atIndex:(NSInteger)index
|
| userGesture:(bool)wasUserGesture {
|
| // The user switched tabs; close.
|
|
|