| Index: ppapi/native_client/src/trusted/plugin/temporary_file.h
|
| diff --git a/ppapi/native_client/src/trusted/plugin/temporary_file.h b/ppapi/native_client/src/trusted/plugin/temporary_file.h
|
| index 09a42502b6bd0097ce263d78cd6fe36ed4e6b056..41f32dd68778c86e59fdb40c79b6da86c97f673f 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/temporary_file.h
|
| +++ b/ppapi/native_client/src/trusted/plugin/temporary_file.h
|
| @@ -58,11 +58,6 @@ class TempFile {
|
|
|
| PP_FileHandle* existing_handle() { return &existing_handle_; }
|
|
|
| - // For quota management.
|
| - const nacl::string identifier() const {
|
| - return nacl::string(reinterpret_cast<const char*>(identifier_));
|
| - }
|
| -
|
| private:
|
| NACL_DISALLOW_COPY_AND_ASSIGN(TempFile);
|
|
|
| @@ -70,14 +65,6 @@ class TempFile {
|
| nacl::scoped_ptr<nacl::DescWrapper> read_wrapper_;
|
| nacl::scoped_ptr<nacl::DescWrapper> write_wrapper_;
|
| PP_FileHandle existing_handle_;
|
| -
|
| - // An identifier string used for quota request processing. The quota
|
| - // interface needs a string that is unique per sel_ldr instance only, so
|
| - // the identifiers can be reused between runs of the translator, start-ups of
|
| - // the browser, etc.
|
| - uint8_t identifier_[16];
|
| - // A counter to dole out unique identifiers.
|
| - static uint32_t next_identifier;
|
| };
|
|
|
| } // namespace plugin
|
|
|