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

Unified Diff: content/renderer/pepper_plugin_delegate_impl.cc

Issue 7618039: PPB_URLRequestInfo::AppendFileToBody using sync ipc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 9 years, 4 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/pepper_plugin_delegate_impl.cc
diff --git a/content/renderer/pepper_plugin_delegate_impl.cc b/content/renderer/pepper_plugin_delegate_impl.cc
index c061b80df3ec0e18cc24074ef9436566d2e9d721..d1a86d1a787b8dfc095db46330743e42eb28d83c 100644
--- a/content/renderer/pepper_plugin_delegate_impl.cc
+++ b/content/renderer/pepper_plugin_delegate_impl.cc
@@ -1232,6 +1232,12 @@ base::PlatformFileError PepperPluginDelegateImpl::GetDirContents(
return error;
}
+void PepperPluginDelegateImpl::SyncGetFileSystemPlatformPath(
+ const GURL& url, FilePath* platform_path) {
+ RenderThread::current()->Send(new FileSystemHostMsg_SyncGetPlatformPath(
+ url, platform_path));
+}
+
scoped_refptr<base::MessageLoopProxy>
PepperPluginDelegateImpl::GetFileThreadMessageLoopProxy() {
return RenderThread::current()->GetFileThreadMessageLoopProxy();

Powered by Google App Engine
This is Rietveld 408576698