| Index: chrome/browser/intents/web_intents_registry.h
|
| diff --git a/chrome/browser/intents/web_intents_registry.h b/chrome/browser/intents/web_intents_registry.h
|
| index 7a712a314b384af4c078f26a4af8b6d3f9b293d8..926f97e8477ee2a2ff39ffba89bd6ce0dec8546c 100644
|
| --- a/chrome/browser/intents/web_intents_registry.h
|
| +++ b/chrome/browser/intents/web_intents_registry.h
|
| @@ -22,7 +22,7 @@ class WebIntentsRegistry
|
| // Unique identifier for intent queries.
|
| typedef int QueryID;
|
|
|
| - typedef std::vector<WebIntentServiceData> IntentList;
|
| + typedef std::vector<webkit_glue::WebIntentServiceData> IntentServiceList;
|
|
|
| // An interface the WebIntentsRegistry uses to notify its clients when
|
| // it has finished loading intents data from the web database.
|
| @@ -31,7 +31,7 @@ class WebIntentsRegistry
|
| // Notifies the observer that the intents request has been completed.
|
| virtual void OnIntentsQueryDone(
|
| QueryID query_id,
|
| - const IntentList& intents) = 0;
|
| + const IntentServiceList& intents) = 0;
|
|
|
| protected:
|
| virtual ~Consumer() {}
|
| @@ -42,10 +42,12 @@ class WebIntentsRegistry
|
| ExtensionServiceInterface* extension_service);
|
|
|
| // Registers a web intent provider.
|
| - virtual void RegisterIntentProvider(const WebIntentServiceData& intent);
|
| + virtual void RegisterIntentProvider(
|
| + const webkit_glue::WebIntentServiceData& intent);
|
|
|
| // Removes a web intent provider from the registry.
|
| - void UnregisterIntentProvider(const WebIntentServiceData& intent);
|
| + void UnregisterIntentProvider(
|
| + const webkit_glue::WebIntentServiceData& intent);
|
|
|
| // Requests all intent providers matching |action|.
|
| // |consumer| must not be NULL.
|
|
|