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

Side by Side Diff: core/include/fxcrt/fx_string.h

Issue 1064433005: Fix IWYU in fxcrt headers. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 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
« no previous file with comments | « core/include/fxcrt/fx_stream.h ('k') | core/include/fxcrt/fx_ucd.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 #ifndef _FX_STRING_H_ 7 #ifndef _FX_STRING_H_
8 #define _FX_STRING_H_ 8 #define _FX_STRING_H_
9
10 #include "fx_memory.h"
11
9 class CFX_ByteStringC; 12 class CFX_ByteStringC;
10 class CFX_ByteString; 13 class CFX_ByteString;
11 class CFX_WideStringC; 14 class CFX_WideStringC;
12 class CFX_WideString; 15 class CFX_WideString;
13 struct CFX_CharMap; 16 struct CFX_CharMap;
14 class CFX_BinaryBuf; 17 class CFX_BinaryBuf;
15 typedef int FX_STRSIZE; 18 typedef int FX_STRSIZE;
16 class CFX_ByteStringL; 19 class CFX_ByteStringL;
17 class CFX_WideStringL; 20 class CFX_WideStringL;
18 21
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 CFX_ByteString FX_UTF8Encode(FX_LPCWSTR pwsStr, FX_STRSIZE len); 867 CFX_ByteString FX_UTF8Encode(FX_LPCWSTR pwsStr, FX_STRSIZE len);
865 inline CFX_ByteString FX_UTF8Encode(FX_WSTR wsStr) 868 inline CFX_ByteString FX_UTF8Encode(FX_WSTR wsStr)
866 { 869 {
867 return FX_UTF8Encode(wsStr.GetPtr(), wsStr.GetLength()); 870 return FX_UTF8Encode(wsStr.GetPtr(), wsStr.GetLength());
868 } 871 }
869 inline CFX_ByteString FX_UTF8Encode(const CFX_WideString &wsStr) 872 inline CFX_ByteString FX_UTF8Encode(const CFX_WideString &wsStr)
870 { 873 {
871 return FX_UTF8Encode(wsStr.c_str(), wsStr.GetLength()); 874 return FX_UTF8Encode(wsStr.c_str(), wsStr.GetLength());
872 } 875 }
873 #endif 876 #endif
OLDNEW
« no previous file with comments | « core/include/fxcrt/fx_stream.h ('k') | core/include/fxcrt/fx_ucd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698