From 72177dadac8f9765440b3aa01e2668f60a8b3f43 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Thu, 15 Sep 2016 12:07:23 -0700 Subject: Replace FX_UINT with unsigned int Remove the FX_UINT typedef and update to use the actual unsigned int type. Review-Url: https://codereview.chromium.org/2343693002 --- fpdfsdk/javascript/resource.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'fpdfsdk/javascript/resource.h') diff --git a/fpdfsdk/javascript/resource.h b/fpdfsdk/javascript/resource.h index d775e94c5e..7f041cd21a 100644 --- a/fpdfsdk/javascript/resource.h +++ b/fpdfsdk/javascript/resource.h @@ -7,8 +7,7 @@ #ifndef FPDFSDK_JAVASCRIPT_RESOURCE_H_ #define FPDFSDK_JAVASCRIPT_RESOURCE_H_ -#include "core/fxcrt/include/fx_string.h" // For CFX_WideString. -#include "fpdfsdk/include/fsdk_define.h" // For FX_UINT. +#include "core/fxcrt/include/fx_string.h" class CJS_Context; @@ -33,7 +32,7 @@ class CJS_Context; #define IDS_STRING_JSNOPERMISSION 25639 #define IDS_STRING_JSBADOBJECT 25640 -CFX_WideString JSGetStringFromID(FX_UINT id); +CFX_WideString JSGetStringFromID(uint32_t id); CFX_WideString JSFormatErrorString(const char* class_name, const char* property_name, const CFX_WideString& details); -- cgit v1.2.3