Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3942)

Unified Diff: chrome/browser/ui/intents/web_intent_constrained_dialog_factory.cc

Issue 7782015: content: Move web intent constrained window to TabContentsWrapper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « chrome/browser/ui/intents/web_intent_constrained_dialog_factory.h ('k') | chrome/browser/ui/intents/web_intent_picker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698