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

Unified Diff: xfa/fwl/lightwidget/cfwl_scrollbar.h

Issue 2070583003: Make code compile with clang_use_chrome_plugin (part VI) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: clean up Created 4 years, 6 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
Index: xfa/fwl/lightwidget/cfwl_scrollbar.h
diff --git a/xfa/fwl/lightwidget/cfwl_scrollbar.h b/xfa/fwl/lightwidget/cfwl_scrollbar.h
index fd80e8b8abcd53b70de0e07f19c28114e5f3a77e..b29691e003f9809cff149c842819034639a692d3 100644
--- a/xfa/fwl/lightwidget/cfwl_scrollbar.h
+++ b/xfa/fwl/lightwidget/cfwl_scrollbar.h
@@ -11,7 +11,11 @@
class CFWL_ScrollBar : public CFWL_Widget {
public:
+ CFWL_ScrollBar();
+ ~CFWL_ScrollBar() override;
+
static CFWL_ScrollBar* Create();
+
FWL_Error Initialize(const CFWL_WidgetProperties* pProperties = NULL);
FX_BOOL IsVertical();
FWL_Error GetRange(FX_FLOAT& fMin, FX_FLOAT& fMax);
@@ -25,8 +29,6 @@ class CFWL_ScrollBar : public CFWL_Widget {
FX_FLOAT GetTrackPos();
FWL_Error SetTrackPos(FX_FLOAT fTrackPos);
FX_BOOL DoScroll(uint32_t dwCode, FX_FLOAT fPos = 0.0f);
- CFWL_ScrollBar();
- virtual ~CFWL_ScrollBar();
};
#endif // XFA_FWL_LIGHTWIDGET_CFWL_SCROLLBAR_H_

Powered by Google App Engine
This is Rietveld 408576698