| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "xfa/fxfa/parser/xfa_localemgr.h" | 7 #include "xfa/fxfa/parser/xfa_localemgr.h" |
| 8 | 8 |
| 9 #include "core/fxcrt/include/fx_xml.h" |
| 9 #include "core/include/fxcodec/fx_codec.h" | 10 #include "core/include/fxcodec/fx_codec.h" |
| 10 #include "core/include/fxcrt/fx_xml.h" | |
| 11 #include "core/include/fxge/fx_ge.h" | 11 #include "core/include/fxge/fx_ge.h" |
| 12 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h" | 12 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h" |
| 13 #include "xfa/fxfa/parser/xfa_docdata.h" | 13 #include "xfa/fxfa/parser/xfa_docdata.h" |
| 14 #include "xfa/fxfa/parser/xfa_doclayout.h" | 14 #include "xfa/fxfa/parser/xfa_doclayout.h" |
| 15 #include "xfa/fxfa/parser/xfa_document.h" | 15 #include "xfa/fxfa/parser/xfa_document.h" |
| 16 #include "xfa/fxfa/parser/xfa_locale.h" | 16 #include "xfa/fxfa/parser/xfa_locale.h" |
| 17 #include "xfa/fxfa/parser/xfa_object.h" | 17 #include "xfa/fxfa/parser/xfa_object.h" |
| 18 #include "xfa/fxfa/parser/xfa_parser.h" | 18 #include "xfa/fxfa/parser/xfa_parser.h" |
| 19 #include "xfa/fxfa/parser/xfa_script.h" | 19 #include "xfa/fxfa/parser/xfa_script.h" |
| 20 #include "xfa/fxfa/parser/xfa_utils.h" | 20 #include "xfa/fxfa/parser/xfa_utils.h" |
| (...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1296 m_tz.tzMinute = (int8_t)((FXSYS_abs((int)timezone) % 3600) / 60); | 1296 m_tz.tzMinute = (int8_t)((FXSYS_abs((int)timezone) % 3600) / 60); |
| 1297 #endif | 1297 #endif |
| 1298 } | 1298 } |
| 1299 CXFA_TimeZoneProvider::~CXFA_TimeZoneProvider() {} | 1299 CXFA_TimeZoneProvider::~CXFA_TimeZoneProvider() {} |
| 1300 void CXFA_TimeZoneProvider::SetTimeZone(FX_TIMEZONE& tz) { | 1300 void CXFA_TimeZoneProvider::SetTimeZone(FX_TIMEZONE& tz) { |
| 1301 m_tz = tz; | 1301 m_tz = tz; |
| 1302 } | 1302 } |
| 1303 void CXFA_TimeZoneProvider::GetTimeZone(FX_TIMEZONE& tz) { | 1303 void CXFA_TimeZoneProvider::GetTimeZone(FX_TIMEZONE& tz) { |
| 1304 tz = m_tz; | 1304 tz = m_tz; |
| 1305 } | 1305 } |
| OLD | NEW |