OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 #import "chrome/browser/ui/cocoa/infobars/alternate_nav_infobar_controller.h" | 5 #import "chrome/browser/ui/cocoa/infobars/alternate_nav_infobar_controller.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/strings/sys_string_conversions.h" | 8 #include "base/strings/sys_string_conversions.h" |
9 #import "chrome/browser/ui/cocoa/hyperlink_text_view.h" | 9 #import "chrome/browser/ui/cocoa/hyperlink_text_view.h" |
10 #include "chrome/browser/ui/cocoa/infobars/infobar_cocoa.h" | 10 #include "chrome/browser/ui/cocoa/infobars/infobar_cocoa.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 WindowOpenDisposition disposition = | 50 WindowOpenDisposition disposition = |
51 ui::WindowOpenDispositionFromNSEvent([NSApp currentEvent]); | 51 ui::WindowOpenDispositionFromNSEvent([NSApp currentEvent]); |
52 AlternateNavInfoBarDelegate* delegate = | 52 AlternateNavInfoBarDelegate* delegate = |
53 static_cast<AlternateNavInfoBarDelegate*>([self delegate]); | 53 static_cast<AlternateNavInfoBarDelegate*>([self delegate]); |
54 if (delegate->LinkClicked(disposition)) | 54 if (delegate->LinkClicked(disposition)) |
55 [self removeSelf]; | 55 [self removeSelf]; |
56 } | 56 } |
57 | 57 |
58 @end | 58 @end |
59 | 59 |
60 InfoBar* AlternateNavInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { | 60 // static |
61 scoped_ptr<InfoBarCocoa> infobar(new InfoBarCocoa(owner, this)); | 61 scoped_ptr<InfoBar> AlternateNavInfoBarDelegate::CreateInfoBar( |
| 62 scoped_ptr<AlternateNavInfoBarDelegate> delegate) { |
| 63 scoped_ptr<InfoBarCocoa> infobar( |
| 64 new InfoBarCocoa(delegate.PassAs<InfoBarDelegate>())); |
62 base::scoped_nsobject<AlternateNavInfoBarController> controller( | 65 base::scoped_nsobject<AlternateNavInfoBarController> controller( |
63 [[AlternateNavInfoBarController alloc] initWithInfoBar:infobar.get()]); | 66 [[AlternateNavInfoBarController alloc] initWithInfoBar:infobar.get()]); |
64 infobar->set_controller(controller); | 67 infobar->set_controller(controller); |
65 return infobar.release(); | 68 return infobar.PassAs<InfoBar>(); |
66 } | 69 } |
OLD | NEW |