Index: content/renderer/intents_dispatcher.h |
=================================================================== |
--- content/renderer/intents_dispatcher.h (revision 104727) |
+++ content/renderer/intents_dispatcher.h (working copy) |
@@ -12,21 +12,23 @@ |
#include "webkit/glue/web_intent_data.h" |
#include "webkit/glue/web_intent_reply_data.h" |
-namespace webkit_glue { |
-struct WebIntentData; |
-} |
+class RenderViewImpl; |
namespace WebKit { |
class WebFrame; |
} |
+namespace webkit_glue { |
+struct WebIntentData; |
+} |
+ |
// IntentsDispatcher is a delegate for Web Intents messages. It is the |
// renderer-side handler for IPC messages delivering the intent payload data |
// and preparing it for access by the service page. |
class IntentsDispatcher : public content::RenderViewObserver { |
public: |
// |render_view| must not be NULL. |
- explicit IntentsDispatcher(RenderView* render_view); |
+ explicit IntentsDispatcher(RenderViewImpl* render_view); |
virtual ~IntentsDispatcher(); |
// Called by the bound intent object to register the result from the service |