Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1198)

Unified Diff: content/browser/intents/intent_injector.cc

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review, take 2 Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/intents/intent_injector.cc
diff --git a/content/browser/intents/intent_injector.cc b/content/browser/intents/intent_injector.cc
index 0beee385f248ded8d992f2af9de4393c1d457830..8e9788fd4827a2b489c085eb9c1c940b991731ba 100644
--- a/content/browser/intents/intent_injector.cc
+++ b/content/browser/intents/intent_injector.cc
@@ -16,6 +16,7 @@
#include "webkit/glue/web_intent_data.h"
#include "webkit/glue/web_intent_reply_data.h"
+using content::RenderViewHost;
using content::WebContents;
IntentInjector::IntentInjector(WebContents* web_contents)
@@ -62,7 +63,7 @@ void IntentInjector::RenderViewCreated(RenderViewHost* render_view_host) {
return;
}
- static_cast<RenderViewHostImpl*>(render_view_host)->Send(
+ static_cast<content::RenderViewHostImpl*>(render_view_host)->Send(
jam 2012/03/05 23:59:28 RenderWidgetHost is an IPC::Sender so no casting s
Jói 2012/03/06 16:38:55 Done.
new IntentsMsg_SetWebIntentData(
render_view_host->GetRoutingID(), *(source_intent_.get())));
}

Powered by Google App Engine
This is Rietveld 408576698