diff options
author | npm <npm@chromium.org> | 2016-08-08 08:18:29 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-08 08:18:29 -0700 |
commit | 660de3c494b68a574cb4cdf20359f51ddc260d3c (patch) | |
tree | 04eebfb5e0effe3cdce70e8bf60b39dcc018a817 /fpdfsdk/pdfwindow | |
parent | f41d9dc1ead47a1218e1cd37bd74ec850c8baaa3 (diff) | |
download | pdfium-660de3c494b68a574cb4cdf20359f51ddc260d3c.tar.xz |
Move CFX_ClipRgn and CFX_PathData into their own files.
This is the second CL in an attempt to split up the classes in fxge/include/fx_ge.h into their own files. CFX_ClipRgn is moved to core/fxge/ge because it is only used in core/fxge. The header for CFX_PathData is left in core/fxge/include since it is used elsewhere.
Review-Url: https://codereview.chromium.org/2216853004
Diffstat (limited to 'fpdfsdk/pdfwindow')
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_Caret.cpp | 1 | ||||
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_ComboBox.cpp | 1 | ||||
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_Edit.cpp | 1 | ||||
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_ScrollBar.cpp | 1 | ||||
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_Utils.cpp | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/fpdfsdk/pdfwindow/PWL_Caret.cpp b/fpdfsdk/pdfwindow/PWL_Caret.cpp index a5728ceac8..8bc87a4491 100644 --- a/fpdfsdk/pdfwindow/PWL_Caret.cpp +++ b/fpdfsdk/pdfwindow/PWL_Caret.cpp @@ -6,6 +6,7 @@ #include "fpdfsdk/pdfwindow/PWL_Caret.h" +#include "core/fxge/include/cfx_pathdata.h" #include "core/fxge/include/fx_ge.h" #include "fpdfsdk/pdfwindow/PWL_Utils.h" #include "fpdfsdk/pdfwindow/PWL_Wnd.h" diff --git a/fpdfsdk/pdfwindow/PWL_ComboBox.cpp b/fpdfsdk/pdfwindow/PWL_ComboBox.cpp index 7349ed058f..46c2e686e0 100644 --- a/fpdfsdk/pdfwindow/PWL_ComboBox.cpp +++ b/fpdfsdk/pdfwindow/PWL_ComboBox.cpp @@ -6,6 +6,7 @@ #include "fpdfsdk/pdfwindow/PWL_ComboBox.h" +#include "core/fxge/include/cfx_pathdata.h" #include "core/fxge/include/fx_ge.h" #include "fpdfsdk/fxedit/include/fxet_list.h" #include "fpdfsdk/pdfwindow/PWL_Edit.h" diff --git a/fpdfsdk/pdfwindow/PWL_Edit.cpp b/fpdfsdk/pdfwindow/PWL_Edit.cpp index 5d20dd46a3..cd5868878b 100644 --- a/fpdfsdk/pdfwindow/PWL_Edit.cpp +++ b/fpdfsdk/pdfwindow/PWL_Edit.cpp @@ -12,6 +12,7 @@ #include "core/fpdfdoc/include/cpvt_word.h" #include "core/fxcrt/include/fx_safe_types.h" #include "core/fxcrt/include/fx_xml.h" +#include "core/fxge/include/cfx_pathdata.h" #include "core/fxge/include/fx_ge.h" #include "fpdfsdk/fxedit/include/fxet_edit.h" #include "fpdfsdk/pdfwindow/PWL_Caret.h" diff --git a/fpdfsdk/pdfwindow/PWL_ScrollBar.cpp b/fpdfsdk/pdfwindow/PWL_ScrollBar.cpp index 410be18a8d..ff5021e91e 100644 --- a/fpdfsdk/pdfwindow/PWL_ScrollBar.cpp +++ b/fpdfsdk/pdfwindow/PWL_ScrollBar.cpp @@ -6,6 +6,7 @@ #include "fpdfsdk/pdfwindow/PWL_ScrollBar.h" +#include "core/fxge/include/cfx_pathdata.h" #include "core/fxge/include/fx_ge.h" #include "fpdfsdk/pdfwindow/PWL_Utils.h" #include "fpdfsdk/pdfwindow/PWL_Wnd.h" diff --git a/fpdfsdk/pdfwindow/PWL_Utils.cpp b/fpdfsdk/pdfwindow/PWL_Utils.cpp index 7e961a468f..c67b75a1cd 100644 --- a/fpdfsdk/pdfwindow/PWL_Utils.cpp +++ b/fpdfsdk/pdfwindow/PWL_Utils.cpp @@ -9,6 +9,7 @@ #include <algorithm> #include "core/fpdfdoc/include/cpvt_word.h" +#include "core/fxge/include/cfx_pathdata.h" #include "core/fxge/include/fx_ge.h" #include "fpdfsdk/fxedit/include/fxet_edit.h" #include "fpdfsdk/pdfwindow/PWL_Icon.h" |