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

Unified Diff: content/renderer/render_view_impl.cc

Issue 19894003: Move webplugininfo.h to content/public. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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/renderer/render_view_impl.cc
===================================================================
--- content/renderer/render_view_impl.cc (revision 212806)
+++ content/renderer/render_view_impl.cc (working copy)
@@ -1134,7 +1134,7 @@
bool RenderViewImpl::GetPluginInfo(const GURL& url,
const GURL& page_url,
const std::string& mime_type,
- webkit::WebPluginInfo* plugin_info,
+ WebPluginInfo* plugin_info,
std::string* actual_mime_type) {
bool found = false;
Send(new ViewHostMsg_GetPluginInfo(
@@ -2830,7 +2830,7 @@
return GetBrowserPluginManager()->CreateBrowserPlugin(this, frame, params);
}
- webkit::WebPluginInfo info;
+ WebPluginInfo info;
std::string mime_type;
bool found = GetPluginInfo(params.url, frame->top()->document().url(),
params.mimeType.utf8(), &info, &mime_type);
@@ -4681,7 +4681,7 @@
WebKit::WebPlugin* RenderViewImpl::CreatePlugin(
WebKit::WebFrame* frame,
- const webkit::WebPluginInfo& info,
+ const WebPluginInfo& info,
const WebKit::WebPluginParams& params) {
WebKit::WebPlugin* pepper_webplugin =
pepper_helper_->CreatePepperWebPlugin(info, params);

Powered by Google App Engine
This is Rietveld 408576698