diff options
author | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-20 15:03:41 +0000 |
---|---|---|
committer | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-20 15:03:41 +0000 |
commit | d213c65a8f31c898164b62e779a74a3d33a9c979 (patch) | |
tree | afe5541dc8f3dc6fcb1846f9d7aa98fc545c4daa /ppapi/cpp/private | |
parent | a9a5a001bb0ab674819174f295ab78923862a0fd (diff) | |
download | chromium_src-d213c65a8f31c898164b62e779a74a3d33a9c979.zip chromium_src-d213c65a8f31c898164b62e779a74a3d33a9c979.tar.gz chromium_src-d213c65a8f31c898164b62e779a74a3d33a9c979.tar.bz2 |
Remove the InstanceHandle paramater from the PPB_PDF C++ wrapper.
The InstanceHandle param is unused.
BUG=
TBR=dmichael
Review URL: https://chromiumcodereview.appspot.com/12642014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@189279 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/private')
-rw-r--r-- | ppapi/cpp/private/pdf.cc | 3 | ||||
-rw-r--r-- | ppapi/cpp/private/pdf.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/ppapi/cpp/private/pdf.cc b/ppapi/cpp/private/pdf.cc index c97757a..6a778e7 100644 --- a/ppapi/cpp/private/pdf.cc +++ b/ppapi/cpp/private/pdf.cc @@ -59,8 +59,7 @@ PP_Resource PDF::GetFontFileWithFallback( } // static -bool PDF::GetFontTableForPrivateFontFile(const InstanceHandle& /*instance*/, - PP_Resource font_file, +bool PDF::GetFontTableForPrivateFontFile(PP_Resource font_file, uint32_t table, void* output, uint32_t* output_length) { diff --git a/ppapi/cpp/private/pdf.h b/ppapi/cpp/private/pdf.h index 76731a2..570c0e7 100644 --- a/ppapi/cpp/private/pdf.h +++ b/ppapi/cpp/private/pdf.h @@ -28,8 +28,7 @@ class PDF { const InstanceHandle& instance, const PP_FontDescription_Dev* description, PP_PrivateFontCharset charset); - static bool GetFontTableForPrivateFontFile(const InstanceHandle& instance, - PP_Resource font_file, + static bool GetFontTableForPrivateFontFile(PP_Resource font_file, uint32_t table, void* output, uint32_t* output_length); |