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

Unified Diff: xfa/fwl/core/cfwl_caret.h

Issue 2525083002: Rename IFWL classes which do not have CFWL equivalents (Closed)
Patch Set: Created 4 years, 1 month 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 | « core/fxge/skia/fx_skia_device.cpp ('k') | xfa/fwl/core/cfwl_caret.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/cfwl_caret.h
diff --git a/xfa/fwl/core/ifwl_caret.h b/xfa/fwl/core/cfwl_caret.h
similarity index 79%
rename from xfa/fwl/core/ifwl_caret.h
rename to xfa/fwl/core/cfwl_caret.h
index 51a80911d56c60d6f975ab7b6b52c8b7b49ea29d..9e68cdf09d23bbc2cf10c68c2a281379d15bad2a 100644
--- a/xfa/fwl/core/ifwl_caret.h
+++ b/xfa/fwl/core/cfwl_caret.h
@@ -4,8 +4,8 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef XFA_FWL_CORE_IFWL_CARET_H_
-#define XFA_FWL_CORE_IFWL_CARET_H_
+#ifndef XFA_FWL_CORE_CFWL_CARET_H_
+#define XFA_FWL_CORE_CFWL_CARET_H_
#include <memory>
@@ -18,12 +18,12 @@ class IFWL_Widget;
#define FWL_STATE_CAT_HightLight 1
-class IFWL_Caret : public IFWL_Widget {
+class CFWL_Caret : public IFWL_Widget {
public:
- IFWL_Caret(const CFWL_App* app,
+ CFWL_Caret(const CFWL_App* app,
std::unique_ptr<CFWL_WidgetProperties> properties,
IFWL_Widget* pOuter);
- ~IFWL_Caret() override;
+ ~CFWL_Caret() override;
// IFWL_Widget
FWL_Type GetClassID() const override;
@@ -39,19 +39,19 @@ class IFWL_Caret : public IFWL_Widget {
private:
class Timer : public CFWL_Timer {
public:
- explicit Timer(IFWL_Caret* pCaret);
+ explicit Timer(CFWL_Caret* pCaret);
~Timer() override {}
void Run(CFWL_TimerInfo* hTimer) override;
};
- friend class IFWL_Caret::Timer;
+ friend class CFWL_Caret::Timer;
void DrawCaretBK(CFX_Graphics* pGraphics,
IFWL_ThemeProvider* pTheme,
const CFX_Matrix* pMatrix);
- std::unique_ptr<IFWL_Caret::Timer> m_pTimer;
+ std::unique_ptr<CFWL_Caret::Timer> m_pTimer;
CFWL_TimerInfo* m_pTimerInfo; // not owned.
};
-#endif // XFA_FWL_CORE_IFWL_CARET_H_
+#endif // XFA_FWL_CORE_CFWL_CARET_H_
« no previous file with comments | « core/fxge/skia/fx_skia_device.cpp ('k') | xfa/fwl/core/cfwl_caret.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698