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

Side by Side Diff: core/src/fxcrt/fx_basic_wstring.cpp

Issue 1425153006: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 5 years, 1 month 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 | « core/src/fxcrt/fx_basic_bstring.cpp ('k') | core/src/fxge/agg/include/fx_agg_driver.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 <stddef.h> // For offsetof(). 7 #include <stddef.h> // For offsetof().
8 8
9 #include "../../include/fxcrt/fx_basic.h" 9 #include "../../include/fxcrt/fx_basic.h"
10 #include "../../../third_party/base/numerics/safe_math.h" 10 #include "third_party/base/numerics/safe_math.h"
11 11
12 // static 12 // static
13 CFX_WideString::StringData* CFX_WideString::StringData::Create(int nLen) { 13 CFX_WideString::StringData* CFX_WideString::StringData::Create(int nLen) {
14 // TODO(palmer): |nLen| should really be declared as |size_t|, or 14 // TODO(palmer): |nLen| should really be declared as |size_t|, or
15 // at least unsigned. 15 // at least unsigned.
16 if (nLen == 0 || nLen < 0) { 16 if (nLen == 0 || nLen < 0) {
17 return NULL; 17 return NULL;
18 } 18 }
19 19
20 // Fixed portion of header plus a NUL wide char not in m_nAllocLength. 20 // Fixed portion of header plus a NUL wide char not in m_nAllocLength.
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 return (CFX_CharMap*)&g_DefaultJISMapper; 1057 return (CFX_CharMap*)&g_DefaultJISMapper;
1058 case 936: 1058 case 936:
1059 return (CFX_CharMap*)&g_DefaultGBKMapper; 1059 return (CFX_CharMap*)&g_DefaultGBKMapper;
1060 case 949: 1060 case 949:
1061 return (CFX_CharMap*)&g_DefaultUHCMapper; 1061 return (CFX_CharMap*)&g_DefaultUHCMapper;
1062 case 950: 1062 case 950:
1063 return (CFX_CharMap*)&g_DefaultBig5Mapper; 1063 return (CFX_CharMap*)&g_DefaultBig5Mapper;
1064 } 1064 }
1065 return NULL; 1065 return NULL;
1066 } 1066 }
OLDNEW
« no previous file with comments | « core/src/fxcrt/fx_basic_bstring.cpp ('k') | core/src/fxge/agg/include/fx_agg_driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698