From 674bbfe24ded465a4d27b268ca84f75976d556da Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 30 Aug 2017 15:37:47 -0400 Subject: Split auto restorer from fx_basic This CL moves CFX_AutoRestorer into its own file, separate from fx_basic.h. Change-Id: I415cb9207416bd4744b8ac8e2d7466852db53f0a Reviewed-on: https://pdfium-review.googlesource.com/12390 Commit-Queue: dsinclair Reviewed-by: Tom Sepez --- core/fxcrt/cfx_autorestorer.h | 20 ++++++++++++++++++++ core/fxcrt/fx_basic.h | 12 ------------ 2 files changed, 20 insertions(+), 12 deletions(-) create mode 100644 core/fxcrt/cfx_autorestorer.h (limited to 'core/fxcrt') diff --git a/core/fxcrt/cfx_autorestorer.h b/core/fxcrt/cfx_autorestorer.h new file mode 100644 index 0000000000..a8c5125c4e --- /dev/null +++ b/core/fxcrt/cfx_autorestorer.h @@ -0,0 +1,20 @@ +// Copyright 2017 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CORE_FXCRT_CFX_AUTORESTORER_H_ +#define CORE_FXCRT_CFX_AUTORESTORER_H_ + +template +class CFX_AutoRestorer { + public: + explicit CFX_AutoRestorer(T* location) + : m_Location(location), m_OldValue(*location) {} + ~CFX_AutoRestorer() { *m_Location = m_OldValue; } + + private: + T* const m_Location; + const T m_OldValue; +}; + +#endif // CORE_FXCRT_CFX_AUTORESTORER_H_ diff --git a/core/fxcrt/fx_basic.h b/core/fxcrt/fx_basic.h index 167ef5ce70..8e3312d365 100644 --- a/core/fxcrt/fx_basic.h +++ b/core/fxcrt/fx_basic.h @@ -142,18 +142,6 @@ class IFX_Pause { virtual bool NeedToPauseNow() = 0; }; -template -class CFX_AutoRestorer { - public: - explicit CFX_AutoRestorer(T* location) - : m_Location(location), m_OldValue(*location) {} - ~CFX_AutoRestorer() { *m_Location = m_OldValue; } - - private: - T* const m_Location; - const T m_OldValue; -}; - uint32_t GetBits32(const uint8_t* pData, int bitpos, int nbits); #endif // CORE_FXCRT_FX_BASIC_H_ -- cgit v1.2.3