diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-08-15 10:31:17 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-15 15:22:12 +0000 |
commit | 22fcbeaa80c54bef3bb6fd4180ba5519fab30962 (patch) | |
tree | b1642f91b36d45b11b76d02c59547186dc6c524b /xfa/fde/ifde_txtedtdorecord.h | |
parent | a0377dc31bccf0e3427bd94fab5fed17c1283098 (diff) | |
download | pdfium-22fcbeaa80c54bef3bb6fd4180ba5519fab30962.tar.xz |
Hide the undo/redo record classes inside the engine
This CL moves the implementation of the records which handle undo/redo
in the text edit engine into an anonymous namespace in the engine.
Change-Id: I299b9738b72e3eccbbec972fd3ea956c491859fa
Reviewed-on: https://pdfium-review.googlesource.com/11010
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fde/ifde_txtedtdorecord.h')
-rw-r--r-- | xfa/fde/ifde_txtedtdorecord.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fde/ifde_txtedtdorecord.h b/xfa/fde/ifde_txtedtdorecord.h index b6a4100d99..e464e7937c 100644 --- a/xfa/fde/ifde_txtedtdorecord.h +++ b/xfa/fde/ifde_txtedtdorecord.h @@ -13,8 +13,8 @@ class IFDE_TxtEdtDoRecord { public: virtual ~IFDE_TxtEdtDoRecord() {} - virtual bool Redo() const = 0; - virtual bool Undo() const = 0; + virtual void Redo() const = 0; + virtual void Undo() const = 0; }; #endif // XFA_FDE_IFDE_TXTEDTDORECORD_H_ |