summaryrefslogtreecommitdiff
path: root/xfa/src/fee/include/fx_wordbreak.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2016-03-09 13:16:17 -0500
committerDan Sinclair <dsinclair@chromium.org>2016-03-09 13:16:17 -0500
commitf1fa151e146d70c5e031726581e176a8c7d0d579 (patch)
treed50e40ce3925aa41d5139f541facda7ed381a109 /xfa/src/fee/include/fx_wordbreak.h
parentc76831bb60d3c938b82a64a45f6b2af5b5f24bed (diff)
downloadpdfium-f1fa151e146d70c5e031726581e176a8c7d0d579.tar.xz
Collapse xfa/src/fee directorieschromium/2674chromium/2673
This CL moves xfa/src/fee/src/fee up to xfa/src/fee and moves the xfa/src/fee/include files up to xfa/src/fee. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1778633003 .
Diffstat (limited to 'xfa/src/fee/include/fx_wordbreak.h')
-rw-r--r--xfa/src/fee/include/fx_wordbreak.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/xfa/src/fee/include/fx_wordbreak.h b/xfa/src/fee/include/fx_wordbreak.h
deleted file mode 100644
index f545f487cd..0000000000
--- a/xfa/src/fee/include/fx_wordbreak.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 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
-
-#ifndef XFA_SRC_FEE_INCLUDE_FX_WORDBREAK_H_
-#define XFA_SRC_FEE_INCLUDE_FX_WORDBREAK_H_
-
-#include "core/include/fxcrt/fx_string.h"
-#include "core/include/fxcrt/fx_system.h"
-
-class IFX_CharIter;
-
-class IFX_WordBreak {
- public:
- virtual ~IFX_WordBreak() {}
- virtual void Release() = 0;
- virtual void Attach(IFX_CharIter* pIter) = 0;
- virtual void Attach(const CFX_WideString& wsText) = 0;
- virtual FX_BOOL Next(FX_BOOL bPrev) = 0;
- virtual void SetAt(int32_t nIndex) = 0;
- virtual int32_t GetWordPos() const = 0;
- virtual int32_t GetWordLength() const = 0;
- virtual void GetWord(CFX_WideString& wsWord) const = 0;
- virtual FX_BOOL IsEOF(FX_BOOL bTail = TRUE) const = 0;
-};
-IFX_WordBreak* FX_WordBreak_Create();
-
-#endif // XFA_SRC_FEE_INCLUDE_FX_WORDBREAK_H_