diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-22 15:42:07 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-22 15:42:07 -0800 |
commit | d64372989fcb4e5af66f437ad7b8be343cb1aa67 (patch) | |
tree | d95ffcf46b3990723ce08a8207d3f6af3c3c1b98 /xfa/fwl/core/cfwl_timerinfo.cpp | |
parent | 5048731cf0b1221a81e76d7f6e95f24159bb87e2 (diff) | |
download | pdfium-d64372989fcb4e5af66f437ad7b8be343cb1aa67.tar.xz |
Rename IFWL_Timer and IFWL_TimerInfo
These twho files are not interfaces. Renamed to be CFWL to signify they are
concrete implementations.
Review-Url: https://codereview.chromium.org/2526513002
Diffstat (limited to 'xfa/fwl/core/cfwl_timerinfo.cpp')
-rw-r--r-- | xfa/fwl/core/cfwl_timerinfo.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xfa/fwl/core/cfwl_timerinfo.cpp b/xfa/fwl/core/cfwl_timerinfo.cpp new file mode 100644 index 0000000000..8322a1d6aa --- /dev/null +++ b/xfa/fwl/core/cfwl_timerinfo.cpp @@ -0,0 +1,13 @@ +// Copyright 2016 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. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#include "xfa/fwl/core/cfwl_timerinfo.h" + +#include "xfa/fwl/core/ifwl_adaptertimermgr.h" + +void CFWL_TimerInfo::StopTimer() { + m_pMgr->Stop(this); +} |