summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/proxy/connection.h2
-rw-r--r--ppapi/proxy/plugin_resource.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/proxy/connection.h b/ppapi/proxy/connection.h
index 13cbbc6..cc8255c 100644
--- a/ppapi/proxy/connection.h
+++ b/ppapi/proxy/connection.h
@@ -40,7 +40,7 @@ struct Connection {
bool in_process;
// We need to use a routing ID when a plugin is in-process, and messages are
// sent back from the browser to the renderer. This is so that messages are
- // routed to the proper RenderViewImpl.
+ // routed to the proper RenderFrameImpl.
int browser_sender_routing_id;
};
diff --git a/ppapi/proxy/plugin_resource.cc b/ppapi/proxy/plugin_resource.cc
index c450f3c..3f4b612 100644
--- a/ppapi/proxy/plugin_resource.cc
+++ b/ppapi/proxy/plugin_resource.cc
@@ -115,7 +115,7 @@ bool PluginResource::SendResourceCall(
const IPC::Message& nested_msg) {
// For in-process plugins, we need to send the routing ID with the request.
// The browser then uses that routing ID when sending the reply so it will be
- // routed back to the correct RenderViewImpl.
+ // routed back to the correct RenderFrameImpl.
if (dest == BROWSER && connection_.in_process) {
return GetSender(dest)->Send(new PpapiHostMsg_InProcessResourceCall(
connection_.browser_sender_routing_id,