diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-26 20:03:04 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-26 20:03:04 +0000 |
commit | c7b6ad1d4286b7ec9314b460e1f15db0412f5836 (patch) | |
tree | dcc3d348ffcd92014a2c6162c3f61f77ffb84b27 /ppapi/native_client | |
parent | 9f2926b3b90a161ef810200141bb1776848c49cd (diff) | |
download | chromium_src-c7b6ad1d4286b7ec9314b460e1f15db0412f5836.zip chromium_src-c7b6ad1d4286b7ec9314b460e1f15db0412f5836.tar.gz chromium_src-c7b6ad1d4286b7ec9314b460e1f15db0412f5836.tar.bz2 |
Pepper: Remove method in PluginReverseInterface.
CloseManifestEntry has been removed from nacl::ReverseInterface, so we don't
need this empty method anymore.
BUG=
R=bbudge@chromium.org
Review URL: https://codereview.chromium.org/357863002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@280079 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r-- | ppapi/native_client/src/trusted/plugin/service_runtime.cc | 6 | ||||
-rw-r--r-- | ppapi/native_client/src/trusted/plugin/service_runtime.h | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.cc b/ppapi/native_client/src/trusted/plugin/service_runtime.cc index 7af9657..6286622 100644 --- a/ppapi/native_client/src/trusted/plugin/service_runtime.cc +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.cc @@ -277,12 +277,6 @@ void PluginReverseInterface::StreamAsFile_MainThreadContinuation( } } -bool PluginReverseInterface::CloseManifestEntry(int32_t desc) { - // We don't take any action on a call to CloseManifestEntry today, so always - // return success. - return true; -} - void PluginReverseInterface::ReportCrash() { NaClLog(4, "PluginReverseInterface::ReportCrash\n"); diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.h b/ppapi/native_client/src/trusted/plugin/service_runtime.h index 2e61c6b4..3b41b5a 100644 --- a/ppapi/native_client/src/trusted/plugin/service_runtime.h +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h @@ -108,8 +108,6 @@ class PluginReverseInterface: public nacl::ReverseInterface { virtual bool OpenManifestEntry(nacl::string url_key, struct NaClFileInfo *info); - virtual bool CloseManifestEntry(int32_t desc); - virtual void ReportCrash(); virtual void ReportExitStatus(int exit_status); |