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

Unified Diff: xfa/fwl/core/ifwl_form.cpp

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 | « xfa/fwl/core/ifwl_form.h ('k') | xfa/fwl/core/ifwl_formproxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/ifwl_form.cpp
diff --git a/xfa/fwl/core/ifwl_form.cpp b/xfa/fwl/core/ifwl_form.cpp
index 56b98e34d291f086b8d8dd860e59727def5157b8..535205d81ae67a4e7030548d601ac34c1d8b27ab 100644
--- a/xfa/fwl/core/ifwl_form.cpp
+++ b/xfa/fwl/core/ifwl_form.cpp
@@ -10,6 +10,7 @@
#include "third_party/base/ptr_util.h"
#include "xfa/fde/tto/fde_textout.h"
+#include "xfa/fwl/core/cfwl_app.h"
#include "xfa/fwl/core/cfwl_evtclose.h"
#include "xfa/fwl/core/cfwl_msgmouse.h"
#include "xfa/fwl/core/cfwl_notedriver.h"
@@ -19,7 +20,6 @@
#include "xfa/fwl/core/cfwl_themepart.h"
#include "xfa/fwl/core/cfwl_themetext.h"
#include "xfa/fwl/core/cfwl_widgetmgr.h"
-#include "xfa/fwl/core/ifwl_app.h"
#include "xfa/fwl/core/ifwl_formproxy.h"
#include "xfa/fwl/core/ifwl_themeprovider.h"
#include "xfa/fwl/theme/cfwl_widgettp.h"
@@ -38,7 +38,7 @@ const uint8_t kCornerEnlarge = 10;
} // namespace
-IFWL_Form::IFWL_Form(const IFWL_App* app,
+IFWL_Form::IFWL_Form(const CFWL_App* app,
std::unique_ptr<CFWL_WidgetProperties> properties,
IFWL_Widget* pOuter)
: IFWL_Widget(app, std::move(properties), pOuter),
@@ -268,7 +268,7 @@ void IFWL_Form::DrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix) {
}
IFWL_Widget* IFWL_Form::DoModal() {
- const IFWL_App* pApp = GetOwnerApp();
+ const CFWL_App* pApp = GetOwnerApp();
if (!pApp)
return nullptr;
@@ -300,7 +300,7 @@ void IFWL_Form::EndDoModal() {
#if (_FX_OS_ == _FX_MACOSX_)
m_pNoteLoop->EndModalLoop();
- const IFWL_App* pApp = GetOwnerApp();
+ const CFWL_App* pApp = GetOwnerApp();
if (!pApp)
return;
@@ -457,7 +457,7 @@ void IFWL_Form::ResetSysBtn() {
}
void IFWL_Form::RegisterForm() {
- const IFWL_App* pApp = GetOwnerApp();
+ const CFWL_App* pApp = GetOwnerApp();
if (!pApp)
return;
@@ -470,7 +470,7 @@ void IFWL_Form::RegisterForm() {
}
void IFWL_Form::UnRegisterForm() {
- const IFWL_App* pApp = GetOwnerApp();
+ const CFWL_App* pApp = GetOwnerApp();
if (!pApp)
return;
« no previous file with comments | « xfa/fwl/core/ifwl_form.h ('k') | xfa/fwl/core/ifwl_formproxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698