| Index: chrome/browser/intents/web_intents_registry.cc
|
| diff --git a/chrome/browser/intents/web_intents_registry.cc b/chrome/browser/intents/web_intents_registry.cc
|
| index 856fe3c991a9516a01d0de98a0be813d8afc9964..7af6708504e036c7a26e3601db59f302563d4aa7 100644
|
| --- a/chrome/browser/intents/web_intents_registry.cc
|
| +++ b/chrome/browser/intents/web_intents_registry.cc
|
| @@ -451,6 +451,12 @@ void WebIntentsRegistry::UnregisterDefaultIntentService(
|
| wds_->RemoveDefaultWebIntentService(default_service);
|
| }
|
|
|
| +void WebIntentsRegistry::UnregisterDefaultIntentServicesForServiceURL(
|
| + const GURL& service_url) {
|
| + DCHECK(wds_.get());
|
| + wds_->RemoveDefaultWebIntentServiceForServiceURL(service_url);
|
| +}
|
| +
|
| void WebIntentsRegistry::GetDefaultIntentService(
|
| const string16& action,
|
| const string16& type,
|
|
|