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

Unified Diff: chrome/browser/renderer_host/resource_message_filter.cc

Issue 196012: This changelist fixes some issues with the NPAPI WMP plugin work in Chrome. ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | « chrome/browser/plugin_service.cc ('k') | chrome/common/plugin_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/resource_message_filter.cc
===================================================================
--- chrome/browser/renderer_host/resource_message_filter.cc (revision 25381)
+++ chrome/browser/renderer_host/resource_message_filter.cc (working copy)
@@ -549,8 +549,8 @@
const std::string& clsid,
FilePath* filename,
std::string* url_mime_type) {
- *filename = plugin_service_->GetPluginPath(url, policy_url, mime_type, clsid,
- url_mime_type);
+ *filename = plugin_service_->GetPluginPath(
+ url, policy_url, mime_type, clsid, url_mime_type);
}
void ResourceMessageFilter::OnOpenChannelToPlugin(const GURL& url,
@@ -558,8 +558,8 @@
const std::string& clsid,
const std::wstring& locale,
IPC::Message* reply_msg) {
- plugin_service_->OpenChannelToPlugin(this, url, mime_type, clsid,
- locale, reply_msg);
+ plugin_service_->OpenChannelToPlugin(
+ this, url, mime_type, clsid, locale, reply_msg);
}
void ResourceMessageFilter::OnCreateDedicatedWorker(const GURL& url,
« no previous file with comments | « chrome/browser/plugin_service.cc ('k') | chrome/common/plugin_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698