Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: xfa/fde/fde_iterator.h

Issue 1896893003: Cleanup FDE interfaces. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fde/fde_geobject.cpp ('k') | xfa/fde/fde_iterator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fde/fde_iterator.h
diff --git a/xfa/fde/fde_iterator.h b/xfa/fde/fde_iterator.h
index 737fb8935f14cf4fa3e74daef722acac3cfd3024..4d089254ea771a0fb1864ebd44f5427b6d781848 100644
--- a/xfa/fde/fde_iterator.h
+++ b/xfa/fde/fde_iterator.h
@@ -17,20 +17,20 @@ struct FDE_CANVASITEM {
FX_POSITION hPos;
};
-class CFDE_VisualSetIterator : public IFDE_VisualSetIterator,
- public CFX_Target {
+class CFDE_VisualSetIterator : public CFX_Target {
public:
CFDE_VisualSetIterator();
~CFDE_VisualSetIterator();
- virtual void Release() { delete this; }
- virtual FX_BOOL AttachCanvas(IFDE_CanvasSet* pCanvas);
- virtual FX_BOOL FilterObjects(uint32_t dwObjects = 0xFFFFFFFF);
+ void Release() { delete this; }
- virtual void Reset();
- virtual FDE_HVISUALOBJ GetNext(IFDE_VisualSet*& pVisualSet,
- FDE_HVISUALOBJ* phCanvasObj = NULL,
- IFDE_CanvasSet** ppCanvasSet = NULL);
+ FX_BOOL AttachCanvas(IFDE_CanvasSet* pCanvas);
+ FX_BOOL FilterObjects(uint32_t dwObjects = 0xFFFFFFFF);
+
+ void Reset();
+ FDE_HVISUALOBJ GetNext(IFDE_VisualSet*& pVisualSet,
+ FDE_HVISUALOBJ* phCanvasObj = NULL,
+ IFDE_CanvasSet** ppCanvasSet = NULL);
protected:
uint32_t m_dwFilter;
« no previous file with comments | « xfa/fde/fde_geobject.cpp ('k') | xfa/fde/fde_iterator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698