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

Side by Side Diff: xfa/src/fgas/src/crt/fx_cpmgr.cpp

Issue 1570743002: XFA: Remove many relative includes in xfa/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 4 years, 11 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 "../fgas_base.h" 7 #include "xfa/src/fgas/src/fgas_base.h"
8 #include "fx_codepage.h"
9 #ifdef _FXCP 8 #ifdef _FXCP
Tom Sepez 2016/01/08 18:47:18 huh?
Lei Zhang 2016/01/08 23:21:33 Deleted this file.
10 #ifdef __cplusplus 9 #ifdef __cplusplus
11 extern "C" { 10 extern "C" {
12 #endif 11 #endif
13 extern const FX_CODEPAGE_HEADER g_CP936_MapHeader; 12 extern const FX_CODEPAGE_HEADER g_CP936_MapHeader;
14 extern const FX_CODEPAGE_HEADER g_CP932_MapHeader; 13 extern const FX_CODEPAGE_HEADER g_CP932_MapHeader;
15 extern const FX_CODEPAGE_HEADER g_CP949_MapHeader; 14 extern const FX_CODEPAGE_HEADER g_CP949_MapHeader;
16 extern const FX_CODEPAGE_HEADER g_CP950_MapHeader; 15 extern const FX_CODEPAGE_HEADER g_CP950_MapHeader;
17 extern const FX_CODEPAGE_HEADER g_CP874_MapHeader; 16 extern const FX_CODEPAGE_HEADER g_CP874_MapHeader;
18 extern const FX_CODEPAGE_HEADER g_CP1250_MapHeader; 17 extern const FX_CODEPAGE_HEADER g_CP1250_MapHeader;
19 extern const FX_CODEPAGE_HEADER g_CP1251_MapHeader; 18 extern const FX_CODEPAGE_HEADER g_CP1251_MapHeader;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 } else { 53 } else {
55 iStart = iMid + 1; 54 iStart = iMid + 1;
56 } 55 }
57 } while (iStart <= iEnd); 56 } while (iStart <= iEnd);
58 return NULL; 57 return NULL;
59 } 58 }
60 #ifdef __cplusplus 59 #ifdef __cplusplus
61 } 60 }
62 #endif 61 #endif
63 #endif 62 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698