diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-04 10:05:36 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-04 16:14:31 +0000 |
commit | 72fe435e80807c91dbf8edc41d5bf3ec3c9bd9e4 (patch) | |
tree | f171ca51a643ea905908e98daf9bbe99590fdb73 /core/fxge/fx_dib.h | |
parent | a0af75cc4d1e50bb2832dc58636043afe565b02b (diff) | |
download | pdfium-72fe435e80807c91dbf8edc41d5bf3ec3c9bd9e4.tar.xz |
Remove CXFA_DataData
This CL removes the CXFA_DataData base class and the functionality is
moved to where it's needed.
Change-Id: Ieba31aa924b9b513466144b31f0e1613923c50aa
Reviewed-on: https://pdfium-review.googlesource.com/22250
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxge/fx_dib.h')
-rw-r--r-- | core/fxge/fx_dib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/fxge/fx_dib.h b/core/fxge/fx_dib.h index 9a7da01467..f7626afd35 100644 --- a/core/fxge/fx_dib.h +++ b/core/fxge/fx_dib.h @@ -11,6 +11,7 @@ #include <utility> #include "core/fxcrt/fx_coordinates.h" +#include "core/fxcrt/widestring.h" enum FXDIB_Format { FXDIB_Invalid = 0, @@ -94,6 +95,8 @@ inline FX_ARGB ArgbEncode(int a, int r, int g, int b) { } FX_ARGB ArgbEncode(int a, FX_COLORREF rgb); +FX_ARGB StringToFXARGB(const WideStringView& view); + #define FXARGB_A(argb) ((uint8_t)((argb) >> 24)) #define FXARGB_R(argb) ((uint8_t)((argb) >> 16)) #define FXARGB_G(argb) ((uint8_t)((argb) >> 8)) |