| Index: chrome/browser/ui/intents/web_intent_constrained_dialog_factory.cc
|
| diff --git a/chrome/browser/ui/intents/web_intent_constrained_dialog_factory.cc b/chrome/browser/ui/intents/web_intent_constrained_dialog_factory.cc
|
| index 0aa6bbb720e9886a9b792fd2c304d61669c66843..05c4e8b7c7e3061aed97b8ca9fcbee469881ffd2 100644
|
| --- a/chrome/browser/ui/intents/web_intent_constrained_dialog_factory.cc
|
| +++ b/chrome/browser/ui/intents/web_intent_constrained_dialog_factory.cc
|
| @@ -17,12 +17,12 @@ WebIntentConstrainedDialogFactory::~WebIntentConstrainedDialogFactory() {
|
| }
|
|
|
| WebIntentPicker* WebIntentConstrainedDialogFactory::Create(
|
| - TabContents* tab_contents,
|
| + TabContentsWrapper* wrapper,
|
| WebIntentPickerDelegate* delegate) {
|
| // Only allow one picker per factory.
|
| DCHECK(picker_ == NULL);
|
|
|
| - picker_ = WebIntentPicker::Create(tab_contents, delegate);
|
| + picker_ = WebIntentPicker::Create(wrapper, delegate);
|
|
|
| // TODO(binji) Remove this check when there are implementations of the picker
|
| // for windows and mac.
|
|
|