diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-01 17:29:36 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-01 17:29:36 +0000 |
commit | 69fdab209f919fd0538b2c0c0fcafe0255836f37 (patch) | |
tree | c91775b5f7576d1203ba123ddae6e868546da89b /ppapi/proxy/file_ref_resource.h | |
parent | 014f00f31aa5ab156052587b1dc21a403f2551b0 (diff) | |
download | chromium_src-69fdab209f919fd0538b2c0c0fcafe0255836f37.zip chromium_src-69fdab209f919fd0538b2c0c0fcafe0255836f37.tar.gz chromium_src-69fdab209f919fd0538b2c0c0fcafe0255836f37.tar.bz2 |
Pepper: Fix display name for internal FileRefs.
There was a bug where internal FileRefs would use the given display name
instead of determining it from the internal filesystem. This fixes that
problem.
R=yzshen
BUG=
Review URL: https://chromiumcodereview.appspot.com/18211002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209451 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/file_ref_resource.h')
-rw-r--r-- | ppapi/proxy/file_ref_resource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/proxy/file_ref_resource.h b/ppapi/proxy/file_ref_resource.h index 62926d7..4e4d1b6 100644 --- a/ppapi/proxy/file_ref_resource.h +++ b/ppapi/proxy/file_ref_resource.h @@ -28,7 +28,7 @@ class PPAPI_PROXY_EXPORT FileRefResource public: static PP_Resource CreateFileRef(Connection connection, PP_Instance instance, - FileRef_CreateInfo info); + const FileRef_CreateInfo& info); virtual ~FileRefResource(); @@ -68,7 +68,7 @@ class PPAPI_PROXY_EXPORT FileRefResource private: FileRefResource(Connection connection, PP_Instance instance, - FileRef_CreateInfo info); + const FileRef_CreateInfo& info); void RunTrackedCallback(scoped_refptr<TrackedCallback> callback, const ResourceMessageReplyParams& params); |