Chromium Code Reviews| Index: content/browser/intents/web_intents_dispatcher_impl.cc |
| diff --git a/content/browser/intents/web_intents_dispatcher_impl.cc b/content/browser/intents/web_intents_dispatcher_impl.cc |
| index 77495931740334714d884a9a34e38ff95c9d62eb..df0e527f24667b4bb85f0879a19ff7a8644c5ddf 100644 |
| --- a/content/browser/intents/web_intents_dispatcher_impl.cc |
| +++ b/content/browser/intents/web_intents_dispatcher_impl.cc |
| @@ -5,6 +5,7 @@ |
| #include "content/browser/intents/web_intents_dispatcher_impl.h" |
| #include "content/browser/intents/intent_injector.h" |
| +#include "content/browser/intents/internal_web_intents_dispatcher.h" |
| #include "content/browser/tab_contents/tab_contents.h" |
| #include "content/common/intents_messages.h" |
| #include "webkit/glue/web_intent_data.h" |
| @@ -12,6 +13,16 @@ |
| using content::WebContents; |
| +namespace content { |
| + |
| +content::WebIntentsDispatcher* WebIntentsDispatcher::Create( |
|
darin (slow to review)
2012/04/02 16:35:43
nit: no need for "content::" when inside the conte
Greg Billock
2012/04/02 17:49:44
Done.
|
| + const webkit_glue::WebIntentData& data) { |
| + return new InternalWebIntentsDispatcher(data); |
| +} |
| + |
| +} // namespace content |
| + |
| + |
| WebIntentsDispatcherImpl::WebIntentsDispatcherImpl( |
| TabContents* source_tab, |
| const webkit_glue::WebIntentData& intent, |