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

Unified Diff: webkit/glue/plugins/plugin_host.cc

Issue 63011: Monster FilePath patch! (Closed)
Patch Set: sync with trunk Created 11 years, 8 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 | « webkit/glue/iframe_redirect_unittest.cc ('k') | webkit/glue/resource_handle_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/plugin_host.cc
diff --git a/webkit/glue/plugins/plugin_host.cc b/webkit/glue/plugins/plugin_host.cc
index b87160a6e59325a2664085105fbdd18e9fcc6e9f..bfefd0be676f1ab50e0bc8b9f84b63d6b8bfa853 100644
--- a/webkit/glue/plugins/plugin_host.cc
+++ b/webkit/glue/plugins/plugin_host.cc
@@ -450,7 +450,9 @@ static NPError PostURLNotify(NPP id,
if (StartsWithASCII(file_path_ascii, kFileUrlPrefix, false)) {
GURL file_url(file_path_ascii);
DCHECK(file_url.SchemeIsFile());
- net::FileURLToFilePath(file_url, &file_path);
+ FilePath path;
+ net::FileURLToFilePath(file_url, &path);
+ file_path = path.ToWStringHack();
} else {
file_path = base::SysNativeMBToWide(file_path_ascii);
}
« no previous file with comments | « webkit/glue/iframe_redirect_unittest.cc ('k') | webkit/glue/resource_handle_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698