| Index: chrome/browser/ui/intents/web_intent_picker_controller.h
|
| diff --git a/chrome/browser/ui/intents/web_intent_picker_controller.h b/chrome/browser/ui/intents/web_intent_picker_controller.h
|
| index c5e52e99fa07e5aa151508ae7e42e896638bb09c..833d746ea1a1002ecfd72fb1639c08a76ec165bf 100644
|
| --- a/chrome/browser/ui/intents/web_intent_picker_controller.h
|
| +++ b/chrome/browser/ui/intents/web_intent_picker_controller.h
|
| @@ -17,7 +17,7 @@
|
| class FaviconService;
|
| class GURL;
|
| class SkBitmap;
|
| -class TabContents;
|
| +class TabContentsWrapper;
|
| class WebDataService;
|
| class WebIntentPicker;
|
| class WebIntentPickerFactory;
|
| @@ -29,7 +29,7 @@ class WebIntentPickerController : public NotificationObserver,
|
| public WebIntentPickerDelegate {
|
| public:
|
| // Takes ownership of |factory|.
|
| - WebIntentPickerController(TabContents* tab_contents,
|
| + WebIntentPickerController(TabContentsWrapper* wrapper,
|
| WebIntentPickerFactory* factory);
|
| virtual ~WebIntentPickerController();
|
|
|
| @@ -67,7 +67,7 @@ class WebIntentPickerController : public NotificationObserver,
|
| void ClosePicker();
|
|
|
| // A weak pointer to the tab contents that the picker is displayed on.
|
| - TabContents* tab_contents_;
|
| + TabContentsWrapper* wrapper_;
|
|
|
| // A notification registrar, listening for notifications when the tab closes
|
| // to close the picker ui.
|
|
|