| Index: chrome/browser/ui/cocoa/web_intent_picker_cocoa.mm
|
| diff --git a/chrome/browser/ui/cocoa/web_intent_picker_cocoa.mm b/chrome/browser/ui/cocoa/web_intent_picker_cocoa.mm
|
| index cf1c540be62d118c3b498faa7b8d1686955b3540..67854d033a63b337d0d0005ad6457b57bd0d2999 100644
|
| --- a/chrome/browser/ui/cocoa/web_intent_picker_cocoa.mm
|
| +++ b/chrome/browser/ui/cocoa/web_intent_picker_cocoa.mm
|
| @@ -68,9 +68,10 @@ void ConstrainedPickerSheetDelegate::DeleteDelegate() {
|
| } // namespace
|
|
|
| // static
|
| -WebIntentPicker* WebIntentPicker::Create(TabContents* tab_contents,
|
| +WebIntentPicker* WebIntentPicker::Create(content::WebContents* web_contents,
|
| WebIntentPickerDelegate* delegate,
|
| WebIntentPickerModel* model) {
|
| + TabContents* tab_contents = TabContents::FromWebContents(web_contents);
|
| return new WebIntentPickerCocoa(tab_contents, delegate, model);
|
| }
|
|
|
|
|