diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-03 18:48:04 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-03 18:48:04 +0000 |
commit | d96fa3b42797332ab53c05b8e6b6357676838e55 (patch) | |
tree | 346819d245a14cd41b240f2284ff62c5819f7542 /xfa/fwl/cfwl_app.cpp | |
parent | 08d939291804b7f867d077d05eaead2adccb0e2d (diff) | |
download | pdfium-d96fa3b42797332ab53c05b8e6b6357676838e55.tar.xz |
Use UnownedPtr<> in cfwl_notedriver.h
Re-order owned/unowned references to obey lifetime constraint.
Change-Id: I589746b3c2e7d8c45d26d63d09eef977b095226d
Reviewed-on: https://pdfium-review.googlesource.com/36970
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fwl/cfwl_app.cpp')
-rw-r--r-- | xfa/fwl/cfwl_app.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fwl/cfwl_app.cpp b/xfa/fwl/cfwl_app.cpp index 58ca93de61..666a91d209 100644 --- a/xfa/fwl/cfwl_app.cpp +++ b/xfa/fwl/cfwl_app.cpp @@ -19,4 +19,4 @@ CFWL_App::CFWL_App(CXFA_FFApp* pAdapter) ASSERT(m_pAdapterNative); } -CFWL_App::~CFWL_App() {} +CFWL_App::~CFWL_App() = default; |