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

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

Issue 2377393002: Move core/fxge/include to core/fxge (Closed)
Patch Set: Rebase to master Created 4 years, 2 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
« no previous file with comments | « xfa/fxfa/parser/cxfa_stroke.h ('k') | xfa/fxgraphics/cagg_graphics.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
11 11
12 #include "core/fxcodec/fx_codec.h" 12 #include "core/fxcodec/fx_codec.h"
13 #include "core/fxcrt/fx_xml.h" 13 #include "core/fxcrt/fx_xml.h"
14 #include "core/fxge/include/cfx_gemodule.h" 14 #include "core/fxge/cfx_gemodule.h"
15 #include "xfa/fxfa/parser/cxfa_document.h" 15 #include "xfa/fxfa/parser/cxfa_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_utils.h" 18 #include "xfa/fxfa/parser/xfa_utils.h"
19 19
20 const uint8_t g_enUS_Locale[] = { 20 const uint8_t g_enUS_Locale[] = {
21 0x78, 0x9C, 0x95, 0x56, 0xD1, 0x6E, 0x9B, 0x30, 0x14, 0x7D, 0x9F, 0xB4, 21 0x78, 0x9C, 0x95, 0x56, 0xD1, 0x6E, 0x9B, 0x30, 0x14, 0x7D, 0x9F, 0xB4,
22 0x7F, 0x40, 0xD6, 0x2A, 0xB5, 0x52, 0x56, 0x6F, 0x8F, 0xA9, 0x88, 0xA5, 22 0x7F, 0x40, 0xD6, 0x2A, 0xB5, 0x52, 0x56, 0x6F, 0x8F, 0xA9, 0x88, 0xA5,
23 0x6C, 0x24, 0x9B, 0x3A, 0xD1, 0x55, 0x22, 0x55, 0xB5, 0xBE, 0x4C, 0x0E, 23 0x6C, 0x24, 0x9B, 0x3A, 0xD1, 0x55, 0x22, 0x55, 0xB5, 0xBE, 0x4C, 0x0E,
24 0xDC, 0x05, 0x34, 0xB0, 0x23, 0x83, 0x37, 0x05, 0xED, 0xE3, 0x67, 0x07, 24 0xDC, 0x05, 0x34, 0xB0, 0x23, 0x83, 0x37, 0x05, 0xED, 0xE3, 0x67, 0x07,
(...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 1283
1284 CXFA_TimeZoneProvider::~CXFA_TimeZoneProvider() {} 1284 CXFA_TimeZoneProvider::~CXFA_TimeZoneProvider() {}
1285 1285
1286 void CXFA_TimeZoneProvider::SetTimeZone(FX_TIMEZONE& tz) { 1286 void CXFA_TimeZoneProvider::SetTimeZone(FX_TIMEZONE& tz) {
1287 m_tz = tz; 1287 m_tz = tz;
1288 } 1288 }
1289 1289
1290 void CXFA_TimeZoneProvider::GetTimeZone(FX_TIMEZONE& tz) { 1290 void CXFA_TimeZoneProvider::GetTimeZone(FX_TIMEZONE& tz) {
1291 tz = m_tz; 1291 tz = m_tz;
1292 } 1292 }
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/cxfa_stroke.h ('k') | xfa/fxgraphics/cagg_graphics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698