diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-17 16:16:00 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-17 16:16:00 +0000 |
commit | 8573b3339aa26a4083a7d30abc8953ee5fbb0daf (patch) | |
tree | 79951d6129d8bba0dec9e565355d9493403e4653 /webkit/plugins/ppapi/ppb_file_system_impl.h | |
parent | 60a55109c391fcab1ff41b60b5394a6ae3d09bbc (diff) | |
download | chromium_src-8573b3339aa26a4083a7d30abc8953ee5fbb0daf.zip chromium_src-8573b3339aa26a4083a7d30abc8953ee5fbb0daf.tar.gz chromium_src-8573b3339aa26a4083a7d30abc8953ee5fbb0daf.tar.bz2 |
AppendFileToBody by blocking ipc
Another version of change to fix PPB_URLRequestInfo::AppendFileToBody using synchronous IPC.
BUG=90878
TEST=PPAPITest.TestURLLoader
Review URL: http://codereview.chromium.org/7618039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97140 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/ppb_file_system_impl.h')
-rw-r--r-- | webkit/plugins/ppapi/ppb_file_system_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/plugins/ppapi/ppb_file_system_impl.h b/webkit/plugins/ppapi/ppb_file_system_impl.h index 4c425db..b14685d 100644 --- a/webkit/plugins/ppapi/ppb_file_system_impl.h +++ b/webkit/plugins/ppapi/ppb_file_system_impl.h @@ -32,7 +32,7 @@ class PPB_FileSystem_Impl : public Resource, virtual ::ppapi::thunk::PPB_FileSystem_API* AsPPB_FileSystem_API() OVERRIDE; PluginInstance* instance() { return instance_; } - PP_FileSystemType type() { return type_; } + PP_FileSystemType type() const { return type_; } const GURL& root_url() const { return root_url_; } void set_root_url(const GURL& root_url) { root_url_ = root_url; } bool opened() const { return opened_; } |