Merge to XFA: Remove typdefs for pointer types in fx_system.h.

Original Review URL: https://codereview.chromium.org/1171733003

R=thestig@chromium.org

Review URL: https://codereview.chromium.org/1178613002.
diff --git a/fpdfsdk/src/javascript/JS_Runtime.cpp b/fpdfsdk/src/javascript/JS_Runtime.cpp
index 9450a64..e3e38bc 100644
--- a/fpdfsdk/src/javascript/JS_Runtime.cpp
+++ b/fpdfsdk/src/javascript/JS_Runtime.cpp
@@ -361,7 +361,7 @@
 }
 FX_BOOL	CJS_Runtime::GetHValueByName(FX_BSTR utf8Name, FXJSE_HVALUE hValue)
 {
-	FX_LPCSTR name = utf8Name.GetCStr();
+	const FX_CHAR* name = utf8Name.GetCStr();
 
 	v8::Locker lock(GetIsolate());
     v8::Isolate::Scope isolate_scope(GetIsolate());
@@ -386,7 +386,7 @@
 {
 	if (utf8Name.IsEmpty() || hValue == NULL)
 		return FALSE;
-	FX_LPCSTR name = utf8Name.GetCStr();
+	const FX_CHAR* name = utf8Name.GetCStr();
 	v8::Isolate* pIsolate = GetIsolate();
 	v8::Locker lock(pIsolate);
     v8::Isolate::Scope isolate_scope(pIsolate);