| Index: chrome/browser/webdata/web_data_service.h
|
| diff --git a/chrome/browser/webdata/web_data_service.h b/chrome/browser/webdata/web_data_service.h
|
| index 456529578f1014f4b4623816939b0fa759fb6b62..42e97185f905953ffd104823ab0e6416719ac7dd 100644
|
| --- a/chrome/browser/webdata/web_data_service.h
|
| +++ b/chrome/browser/webdata/web_data_service.h
|
| @@ -375,6 +375,11 @@ class WebDataService
|
| Handle GetWebIntentServices(const string16& action,
|
| WebDataServiceConsumer* consumer);
|
|
|
| + // Get all web intent services registered using the specified |service_url|.
|
| + // |consumer| must not be NULL.
|
| + Handle GetWebIntentServicesForURL(const string16& service_url,
|
| + WebDataServiceConsumer* consumer);
|
| +
|
| // Get all web intent services registered. |consumer| must not be NULL.
|
| Handle GetAllWebIntentServices(WebDataServiceConsumer* consumer);
|
|
|
| @@ -627,6 +632,7 @@ class WebDataService
|
| void RemoveWebIntentServiceImpl(
|
| GenericRequest<webkit_glue::WebIntentServiceData>* request);
|
| void GetWebIntentServicesImpl(GenericRequest<string16>* request);
|
| + void GetWebIntentServicesForURLImpl(GenericRequest<string16>* request);
|
| void GetAllWebIntentServicesImpl(GenericRequest<std::string>* request);
|
|
|
| //////////////////////////////////////////////////////////////////////////////
|
|
|