diff options
author | tsepez <tsepez@chromium.org> | 2016-12-08 12:28:04 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-08 12:28:04 -0800 |
commit | 80c40de632cc089979dfd5bea351f58aa20930ce (patch) | |
tree | 0502dbb6c291721f7dbf38026b545d246758b773 /core/fpdfapi | |
parent | 51709bea3ce113df7d36a5fe6415036e26fc3236 (diff) | |
download | pdfium-80c40de632cc089979dfd5bea351f58aa20930ce.tar.xz |
Remove last usage of CFX_ObjectArray.
Review-Url: https://codereview.chromium.org/2558373002
Diffstat (limited to 'core/fpdfapi')
-rw-r--r-- | core/fpdfapi/parser/cpdf_stream_acc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/fpdfapi/parser/cpdf_stream_acc.h b/core/fpdfapi/parser/cpdf_stream_acc.h index 24ae5d2ed8..51a8a18332 100644 --- a/core/fpdfapi/parser/cpdf_stream_acc.h +++ b/core/fpdfapi/parser/cpdf_stream_acc.h @@ -19,6 +19,9 @@ class CPDF_StreamAcc { CPDF_StreamAcc(); ~CPDF_StreamAcc(); + CPDF_StreamAcc(const CPDF_StreamAcc&) = delete; + CPDF_StreamAcc& operator=(const CPDF_StreamAcc&) = delete; + void LoadAllData(const CPDF_Stream* pStream, bool bRawAccess = false, uint32_t estimated_size = 0, |