diff options
Diffstat (limited to 'chrome/browser/extensions/app_notify_channel_ui.h')
-rw-r--r-- | chrome/browser/extensions/app_notify_channel_ui.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/extensions/app_notify_channel_ui.h b/chrome/browser/extensions/app_notify_channel_ui.h index 4192471..9ca1a05 100644 --- a/chrome/browser/extensions/app_notify_channel_ui.h +++ b/chrome/browser/extensions/app_notify_channel_ui.h @@ -8,7 +8,10 @@ #include <string> class Profile; -class TabContents; + +namespace content { +class WebContents; +} namespace extensions { @@ -43,7 +46,7 @@ class AppNotifyChannelUI { // Builds the platform specific AppNotifyChannelUI. static AppNotifyChannelUI* Create(Profile* profile, - TabContents* tab_contents, + content::WebContents* web_contents, const std::string& app_name, AppNotifyChannelUI::UIType ui_type); }; |