| Index: chrome/browser/cocoa/infobar_container_controller.mm
|
| ===================================================================
|
| --- chrome/browser/cocoa/infobar_container_controller.mm (revision 65558)
|
| +++ chrome/browser/cocoa/infobar_container_controller.mm (working copy)
|
| @@ -38,10 +38,8 @@
|
| animate:YES];
|
| break;
|
| case NotificationType::TAB_CONTENTS_INFOBAR_REPLACED: {
|
| - typedef std::pair<InfoBarDelegate*, InfoBarDelegate*>
|
| - InfoBarDelegatePair;
|
| - InfoBarDelegatePair* delegates =
|
| - Details<InfoBarDelegatePair>(details).ptr();
|
| + typedef std::pair<InfoBarDelegate*, InfoBarDelegate*> InfoBarDelegates;
|
| + InfoBarDelegates* delegates = Details<InfoBarDelegates>(details).ptr();
|
| [controller_
|
| replaceInfoBarsForDelegate:delegates->first with:delegates->second];
|
| break;
|
|
|