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

Unified Diff: content/browser/speech/input_tag_speech_dispatcher_host.cc

Issue 11693009: Browser Plugin: Implement ExecuteScript (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/speech/input_tag_speech_dispatcher_host.cc
diff --git a/content/browser/speech/input_tag_speech_dispatcher_host.cc b/content/browser/speech/input_tag_speech_dispatcher_host.cc
index 84f0734afa9807fa71267e1be9b6dc6a6c6d17ae..39969c76a3f3f96212b3d1af28e0db86f3d9aa97 100644
--- a/content/browser/speech/input_tag_speech_dispatcher_host.cc
+++ b/content/browser/speech/input_tag_speech_dispatcher_host.cc
@@ -95,9 +95,9 @@ void InputTagSpeechDispatcherHost::OnStartRecognition(
input_params.element_rect.set_origin(
guest->GetScreenCoordinates(input_params.element_rect.origin()));
render_process_id =
- guest->embedder_web_contents()->GetRenderProcessHost()->GetID();
+ guest->GetEmbedderWebContents()->GetRenderProcessHost()->GetID();
input_params.render_view_id =
- guest->embedder_web_contents()->GetRoutingID();
+ guest->GetEmbedderWebContents()->GetRoutingID();
}
if (guest_) {

Powered by Google App Engine
This is Rietveld 408576698