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

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

Issue 2521303002: Rename IFWL_App to CFWL_App (Closed)
Patch Set: Rebase to master 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 | « fpdfsdk/cpdfsdk_xfawidgethandler.cpp ('k') | xfa/fwl/core/cfwl_app.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/cfwl_app.h
diff --git a/xfa/fwl/core/ifwl_app.h b/xfa/fwl/core/cfwl_app.h
similarity index 85%
rename from xfa/fwl/core/ifwl_app.h
rename to xfa/fwl/core/cfwl_app.h
index 307cb0770fc879057b691249b345cbe206b51578..28ed8a46c2557c7a834aa61e3c0dd85f9ba32c2b 100644
--- a/xfa/fwl/core/ifwl_app.h
+++ b/xfa/fwl/core/cfwl_app.h
@@ -4,8 +4,8 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef XFA_FWL_CORE_IFWL_APP_H_
-#define XFA_FWL_CORE_IFWL_APP_H_
+#ifndef XFA_FWL_CORE_CFWL_APP_H_
+#define XFA_FWL_CORE_CFWL_APP_H_
#include <memory>
@@ -27,10 +27,10 @@ enum FWL_KeyFlag {
FWL_KEYFLAG_MButton = 1 << 6
};
-class IFWL_App {
+class CFWL_App {
public:
- explicit IFWL_App(CXFA_FFApp* pAdapter);
- ~IFWL_App();
+ explicit CFWL_App(CXFA_FFApp* pAdapter);
+ ~CFWL_App();
CXFA_FFApp* GetAdapterNative() const { return m_pAdapterNative; }
CFWL_WidgetMgr* GetWidgetMgr() const { return m_pWidgetMgr.get(); }
@@ -42,4 +42,4 @@ class IFWL_App {
std::unique_ptr<CFWL_NoteDriver> m_pNoteDriver;
};
-#endif // XFA_FWL_CORE_IFWL_APP_H_
+#endif // XFA_FWL_CORE_CFWL_APP_H_
« no previous file with comments | « fpdfsdk/cpdfsdk_xfawidgethandler.cpp ('k') | xfa/fwl/core/cfwl_app.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698