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

Unified Diff: xfa/src/fwl/src/core/include/fwl_contentimp.h

Issue 1453473002: FWL refcounts never incremented (part 2). (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Rebased past part1. Created 5 years 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
Index: xfa/src/fwl/src/core/include/fwl_contentimp.h
diff --git a/xfa/src/fwl/src/core/include/fwl_contentimp.h b/xfa/src/fwl/src/core/include/fwl_contentimp.h
index 0bfc77cd581cb3aaff7199199b9e532e917841fa..dc7ff7b681e8e4682c86ced149294e9488f1783f 100644
--- a/xfa/src/fwl/src/core/include/fwl_contentimp.h
+++ b/xfa/src/fwl/src/core/include/fwl_contentimp.h
@@ -11,8 +11,9 @@ class IFWL_Widget;
class CFWL_ContentImp;
class CFWL_ContentImp : public CFWL_WidgetImp {
public:
- CFWL_ContentImp();
- CFWL_ContentImp(const CFWL_WidgetImpProperties& properties);
+ CFWL_ContentImp(const CFWL_WidgetImpProperties& properties,
+ IFWL_Widget* pOuter);
+
virtual ~CFWL_ContentImp();
virtual FWL_ERR InsertWidget(IFWL_Widget* pChild, int32_t nIndex = -1);
virtual FWL_ERR RemoveWidget(IFWL_Widget* pWidget);
@@ -25,7 +26,7 @@ class CFWL_ContentImp : public CFWL_WidgetImp {
protected:
FX_FLOAT m_fWidthMin;
FX_FLOAT m_fWidthMax;
- FX_FLOAT m_fHeightMax;
FX_FLOAT m_fHeightMin;
+ FX_FLOAT m_fHeightMax;
};
#endif

Powered by Google App Engine
This is Rietveld 408576698