Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(559)

Side by Side Diff: xfa/fxfa/parser/xfa_localemgr.cpp

Issue 1899103002: XFA unused function cleanup (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/fxcodec/include/fx_codec.h" 9 #include "core/fxcodec/include/fx_codec.h"
10 #include "core/fxcrt/include/fx_xml.h" 10 #include "core/fxcrt/include/fx_xml.h"
11 #include "core/fxge/include/fx_ge.h" 11 #include "core/fxge/include/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"
14 #include "xfa/fxfa/parser/xfa_doclayout.h" 13 #include "xfa/fxfa/parser/xfa_doclayout.h"
15 #include "xfa/fxfa/parser/xfa_document.h" 14 #include "xfa/fxfa/parser/xfa_document.h"
16 #include "xfa/fxfa/parser/xfa_locale.h" 15 #include "xfa/fxfa/parser/xfa_locale.h"
17 #include "xfa/fxfa/parser/xfa_object.h" 16 #include "xfa/fxfa/parser/xfa_object.h"
18 #include "xfa/fxfa/parser/xfa_parser.h" 17 #include "xfa/fxfa/parser/xfa_parser.h"
19 #include "xfa/fxfa/parser/xfa_script.h" 18 #include "xfa/fxfa/parser/xfa_script.h"
20 #include "xfa/fxfa/parser/xfa_utils.h" 19 #include "xfa/fxfa/parser/xfa_utils.h"
21 20
22 const uint8_t g_enUS_Locale[] = { 21 const uint8_t g_enUS_Locale[] = {
23 0x78, 0x9C, 0x95, 0x56, 0xD1, 0x6E, 0x9B, 0x30, 0x14, 0x7D, 0x9F, 0xB4, 22 0x78, 0x9C, 0x95, 0x56, 0xD1, 0x6E, 0x9B, 0x30, 0x14, 0x7D, 0x9F, 0xB4,
(...skipping 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1303 m_tz.tzMinute = (int8_t)((FXSYS_abs((int)timezone) % 3600) / 60); 1302 m_tz.tzMinute = (int8_t)((FXSYS_abs((int)timezone) % 3600) / 60);
1304 #endif 1303 #endif
1305 } 1304 }
1306 CXFA_TimeZoneProvider::~CXFA_TimeZoneProvider() {} 1305 CXFA_TimeZoneProvider::~CXFA_TimeZoneProvider() {}
1307 void CXFA_TimeZoneProvider::SetTimeZone(FX_TIMEZONE& tz) { 1306 void CXFA_TimeZoneProvider::SetTimeZone(FX_TIMEZONE& tz) {
1308 m_tz = tz; 1307 m_tz = tz;
1309 } 1308 }
1310 void CXFA_TimeZoneProvider::GetTimeZone(FX_TIMEZONE& tz) { 1309 void CXFA_TimeZoneProvider::GetTimeZone(FX_TIMEZONE& tz) {
1311 tz = m_tz; 1310 tz = m_tz;
1312 } 1311 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698