diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-09-21 14:52:41 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-21 19:22:00 +0000 |
commit | de44d154f6c61af75f149e965a7f483f0b30dd98 (patch) | |
tree | cb33c824a73bb017d4403fba898b1d8c4e0c1566 /core/fpdfapi/parser | |
parent | b89669975f6156fce4ced5c8998125a845f8e7dc (diff) | |
download | pdfium-de44d154f6c61af75f149e965a7f483f0b30dd98.tar.xz |
Move CFX_MaybeOwned to fxcrt::MaybeOwned
This CL moves CFX_MaybeOwned into the fxcrt namespace and removes the
CFX_ prefix.
The test names for maybe owned were updated to be in the MaybeOned test
suite instead of the fxcrt suite.
Bug: pdfium:898
Change-Id: I0c07057d66c8610e7b19133094b4507fff725e76
Reviewed-on: https://pdfium-review.googlesource.com/14470
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/parser')
-rw-r--r-- | core/fpdfapi/parser/cpdf_object_avail.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfapi/parser/cpdf_object_avail.h b/core/fpdfapi/parser/cpdf_object_avail.h index 233d180c94..bd46cdba5c 100644 --- a/core/fpdfapi/parser/cpdf_object_avail.h +++ b/core/fpdfapi/parser/cpdf_object_avail.h @@ -10,8 +10,8 @@ #include <stack> #include "core/fpdfapi/parser/cpdf_data_avail.h" -#include "core/fxcrt/cfx_maybe_owned.h" #include "core/fxcrt/cfx_unowned_ptr.h" +#include "core/fxcrt/maybe_owned.h" class CPDF_Object; class CPDF_Reference; @@ -44,7 +44,7 @@ class CPDF_ObjectAvail { CFX_UnownedPtr<CPDF_ReadValidator> validator_; CFX_UnownedPtr<CPDF_IndirectObjectHolder> holder_; - CFX_MaybeOwned<const CPDF_Object> root_; + MaybeOwned<const CPDF_Object> root_; std::set<uint32_t> parsed_objnums_; std::stack<uint32_t> non_parsed_objects_; }; |