Remove trailing whitespaces in fpdfsdk, XFA edition.

Review URL: https://codereview.chromium.org/1185843005.
diff --git a/fpdfsdk/src/javascript/JS_Runtime.cpp b/fpdfsdk/src/javascript/JS_Runtime.cpp
index d8fea8d..2ffc9ff 100644
--- a/fpdfsdk/src/javascript/JS_Runtime.cpp
+++ b/fpdfsdk/src/javascript/JS_Runtime.cpp
@@ -1,7 +1,7 @@
 // Copyright 2014 PDFium Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
- 
+
 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
 
 #include "../../include/javascript/JavaScript.h"
@@ -48,7 +48,7 @@
 	m_nRef++;
 }
 void							CJS_RuntimeFactory::Release()
-{	
+{
 	if(m_bInit)
 	{
 		//to do.Should be implemented as atom manipulation.
@@ -85,7 +85,7 @@
 void CJS_RuntimeFactory::ReleaseGlobalData()
 {
 	m_nGlobalDataCount--;
-	
+
 	if (m_nGlobalDataCount <= 0)
 	{
  		delete m_pGlobalData;
@@ -178,21 +178,21 @@
 	if (CJS_Position::Init(*this, JS_STATIC) < 0) return FALSE;
 	if (CJS_ScaleHow::Init(*this, JS_STATIC) < 0) return FALSE;
 	if (CJS_ScaleWhen::Init(*this, JS_STATIC) < 0) return FALSE;
-	if (CJS_Style::Init(*this, JS_STATIC) < 0) return FALSE;	
-	if (CJS_Zoomtype::Init(*this, JS_STATIC) < 0) return FALSE;	
+	if (CJS_Style::Init(*this, JS_STATIC) < 0) return FALSE;
+	if (CJS_Zoomtype::Init(*this, JS_STATIC) < 0) return FALSE;
 
 	//9 - 11
 	if (CJS_App::Init(*this, JS_STATIC) < 0) return FALSE;
-	if (CJS_Color::Init(*this, JS_STATIC) < 0) return FALSE;   
+	if (CJS_Color::Init(*this, JS_STATIC) < 0) return FALSE;
 	if (CJS_Console::Init(*this, JS_STATIC) < 0) return FALSE;
 
 	//12 - 14
-	if (CJS_Document::Init(*this, JS_DYNAMIC) < 0) return FALSE;  
-	if (CJS_Event::Init(*this, JS_STATIC) < 0) return FALSE;		
-	if (CJS_Field::Init(*this, JS_DYNAMIC) < 0) return FALSE;    
+	if (CJS_Document::Init(*this, JS_DYNAMIC) < 0) return FALSE;
+	if (CJS_Event::Init(*this, JS_STATIC) < 0) return FALSE;
+	if (CJS_Field::Init(*this, JS_DYNAMIC) < 0) return FALSE;
 
 	//15 - 17
-	if (CJS_Global::Init(*this, JS_STATIC) < 0) return FALSE;		
+	if (CJS_Global::Init(*this, JS_STATIC) < 0) return FALSE;
 	if (CJS_Icon::Init(*this, JS_DYNAMIC) < 0) return FALSE;
 	if (CJS_Util::Init(*this, JS_STATIC) < 0) return FALSE;
 
@@ -373,7 +373,7 @@
 
 	//v8::Local<v8::Context> tmpCotext = v8::Local<v8::Context>::New(GetIsolate(), m_context);
 	v8::Local<v8::Value> propvalue = context->Global()->Get(v8::String::NewFromUtf8(GetIsolate(), name, v8::String::kNormalString, utf8Name.GetLength()));
-	 
+
 	if (propvalue.IsEmpty()) {
 		FXJSE_Value_SetUndefined(hValue);
 		return FALSE;
@@ -398,6 +398,6 @@
 	//v8::Local<v8::Context> tmpCotext = v8::Local<v8::Context>::New(GetIsolate(), m_context);
 	v8::Local<v8::Value> propvalue = v8::Local<v8::Value>::New(GetIsolate(),((CFXJSE_Value*)hValue)->DirectGetValue());
 	context->Global()->Set(v8::String::NewFromUtf8(pIsolate, name, v8::String::kNormalString, utf8Name.GetLength()), propvalue);
-	 
+
 	return TRUE;
 }