diff options
author | tsepez <tsepez@chromium.org> | 2016-09-12 09:47:52 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-12 09:47:52 -0700 |
commit | 1c62054a42cf0759148501a36c541de5d5769d32 (patch) | |
tree | ed2e53f26474dff1149ce83d3f175c3c36b31631 /third_party/base/stl_util.h | |
parent | 75f84a56fed36111ece82d0ac96e87289622b093 (diff) | |
download | pdfium-1c62054a42cf0759148501a36c541de5d5769d32.tar.xz |
Make CFX_Obeservable::Observer into a pointer-ish type;
This may be a better design because it avoids having a level
of indirection that the Observer required.
Review-Url: https://codereview.chromium.org/2326763002
Diffstat (limited to 'third_party/base/stl_util.h')
-rw-r--r-- | third_party/base/stl_util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/base/stl_util.h b/third_party/base/stl_util.h index ccf3c09073..0bf442c316 100644 --- a/third_party/base/stl_util.h +++ b/third_party/base/stl_util.h @@ -6,6 +6,7 @@ #define PDFIUM_THIRD_PARTY_BASE_STL_UTIL_H_ #include <algorithm> +#include <memory> #include <set> #include "third_party/base/numerics/safe_conversions.h" |