Index: chrome/browser/intents/register_intent_handler_infobar_delegate.h |
diff --git a/chrome/browser/intents/register_intent_handler_infobar_delegate.h b/chrome/browser/intents/register_intent_handler_infobar_delegate.h |
index 83ae2fa75956d7e52a58bbd96740db7b0a8a7c24..21bc4de073089e40b5da40a1b04f101a1f4c475a 100644 |
--- a/chrome/browser/intents/register_intent_handler_infobar_delegate.h |
+++ b/chrome/browser/intents/register_intent_handler_infobar_delegate.h |
@@ -18,9 +18,10 @@ class WebIntentsRegistry; |
// Intent handler. |
class RegisterIntentHandlerInfoBarDelegate : public ConfirmInfoBarDelegate { |
public: |
- RegisterIntentHandlerInfoBarDelegate(InfoBarTabHelper* infobar_helper, |
- WebIntentsRegistry* registry, |
- const WebIntentServiceData& service); |
+ RegisterIntentHandlerInfoBarDelegate( |
+ InfoBarTabHelper* infobar_helper, |
+ WebIntentsRegistry* registry, |
+ const webkit_glue::WebIntentServiceData& service); |
// ConfirmInfoBarDelegate implementation. |
virtual Type GetInfoBarType() const OVERRIDE; |
@@ -34,8 +35,8 @@ class RegisterIntentHandlerInfoBarDelegate : public ConfirmInfoBarDelegate { |
// The web intents registry to use. Weak pointer. |
WebIntentsRegistry* registry_; |
- // The cached intent data bundle passed up from the renderer. |
- WebIntentServiceData service_; |
+ // The cached intent service data bundle passed up from the renderer. |
+ webkit_glue::WebIntentServiceData service_; |
DISALLOW_COPY_AND_ASSIGN(RegisterIntentHandlerInfoBarDelegate); |
}; |