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

Unified Diff: content/renderer/pepper/pepper_plugin_delegate_impl.cc

Issue 11232014: Move a bunch of code in content\renderer to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 2 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
« no previous file with comments | « content/renderer/pepper/pepper_plugin_delegate_impl.h ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_plugin_delegate_impl.cc
===================================================================
--- content/renderer/pepper/pepper_plugin_delegate_impl.cc (revision 163045)
+++ content/renderer/pepper/pepper_plugin_delegate_impl.cc (working copy)
@@ -144,7 +144,7 @@
return false;
}
dispatcher_->channel()->SetRestrictDispatchChannelGroup(
- content::kRendererRestrictDispatchGroup_Pepper);
+ kRendererRestrictDispatchGroup_Pepper);
return true;
}
@@ -315,7 +315,7 @@
PepperPluginRegistry::GetInstance()->GetInfoForPlugin(
webplugin_info)->permissions);
RendererPpapiHostImpl* host_impl =
- content::RendererPpapiHostImpl::CreateOnModuleForInProcess(
+ RendererPpapiHostImpl::CreateOnModuleForInProcess(
module, perms);
render_view->PpapiPluginCreated(host_impl);
}
@@ -418,7 +418,7 @@
PepperPluginDelegateImpl::CreateBrowserPluginModule(
const IPC::ChannelHandle& channel_handle,
int guest_process_id) {
- content::old::BrowserPluginRegistry* registry =
+ old::BrowserPluginRegistry* registry =
RenderThreadImpl::current()->browser_plugin_registry();
scoped_refptr<webkit::ppapi::PluginModule> module =
registry->GetModule(guest_process_id);
@@ -501,7 +501,7 @@
return NULL;
RendererPpapiHostImpl* host_impl =
- content::RendererPpapiHostImpl::CreateOnModuleForOutOfProcess(
+ RendererPpapiHostImpl::CreateOnModuleForOutOfProcess(
module, dispatcher->dispatcher(), permissions);
render_view_->PpapiPluginCreated(host_impl);
@@ -1496,7 +1496,7 @@
void PepperPluginDelegateImpl::SaveURLAs(const GURL& url) {
WebFrame* frame = render_view_->webview()->mainFrame();
- content::Referrer referrer(frame->document().url(),
+ Referrer referrer(frame->document().url(),
frame->document().referrerPolicy());
render_view_->Send(new ViewHostMsg_SaveURLAs(
render_view_->routing_id(), url, referrer));
« no previous file with comments | « content/renderer/pepper/pepper_plugin_delegate_impl.h ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698