summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/intents/web_intent_picker.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/intents/web_intent_picker.h')
-rw-r--r--chrome/browser/ui/intents/web_intent_picker.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/ui/intents/web_intent_picker.h b/chrome/browser/ui/intents/web_intent_picker.h
index 0c49099f..6dadb3e 100644
--- a/chrome/browser/ui/intents/web_intent_picker.h
+++ b/chrome/browser/ui/intents/web_intent_picker.h
@@ -12,10 +12,13 @@
class Browser;
class GURL;
class SkBitmap;
-class TabContents;
class TabContentsWrapper;
class WebIntentPickerDelegate;
+namespace content {
+class WebContents;
+}
+
// Base class for the web intent picker dialog.
class WebIntentPicker {
public:
@@ -40,7 +43,7 @@ class WebIntentPicker {
virtual void Close() = 0;
// Show the inline disposition UI for the given URL.
- virtual TabContents* SetInlineDisposition(const GURL& url) = 0;
+ virtual content::WebContents* SetInlineDisposition(const GURL& url) = 0;
protected:
virtual ~WebIntentPicker() {}