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

Side by Side Diff: xfa/fee/fx_wordbreak/fx_wordbreak_impl.cpp

Issue 1882213002: Cleanup various IFX_ text interfaces. (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
« no previous file with comments | « xfa/fee/fx_wordbreak/fx_wordbreak_impl.h ('k') | xfa/fgas/layout/fgas_rtfbreak.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/fee/fx_wordbreak/fx_wordbreak_impl.h" 7 #include "xfa/fee/fx_wordbreak/fx_wordbreak_impl.h"
8 8
9 FX_WordBreakProp FX_GetWordBreakProperty(FX_WCHAR wcCodePoint) { 9 FX_WordBreakProp FX_GetWordBreakProperty(FX_WCHAR wcCodePoint) {
10 uint32_t dwProperty = 10 uint32_t dwProperty =
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 return TRUE; 226 return TRUE;
227 } 227 }
228 } 228 }
229 } 229 }
230 ePreType = eCurType; 230 ePreType = eCurType;
231 eCurType = eNextType; 231 eCurType = eNextType;
232 bFirst = FALSE; 232 bFirst = FALSE;
233 } while (!pIter->IsEOF(!bPrev)); 233 } while (!pIter->IsEOF(!bPrev));
234 return TRUE; 234 return TRUE;
235 } 235 }
236 IFX_WordBreak* FX_WordBreak_Create() {
237 return new CFX_WordBreak;
238 }
OLDNEW
« no previous file with comments | « xfa/fee/fx_wordbreak/fx_wordbreak_impl.h ('k') | xfa/fgas/layout/fgas_rtfbreak.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698