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

Side by Side Diff: fpdfsdk/pdfwindow/PWL_Utils.h

Issue 2374383003: Move core/fpdfdoc/include to core/fpdfdoc (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 | « fpdfsdk/pdfwindow/PWL_FontMap.cpp ('k') | fpdfsdk/pdfwindow/PWL_Utils.cpp » ('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 FPDFSDK_PDFWINDOW_PWL_UTILS_H_ 7 #ifndef FPDFSDK_PDFWINDOW_PWL_UTILS_H_
8 #define FPDFSDK_PDFWINDOW_PWL_UTILS_H_ 8 #define FPDFSDK_PDFWINDOW_PWL_UTILS_H_
9 9
10 #include "core/fpdfdoc/include/cpvt_wordrange.h" 10 #include "core/fpdfdoc/cpvt_wordrange.h"
11 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" 11 #include "fpdfsdk/pdfwindow/PWL_Wnd.h"
12 12
13 class CFX_Edit; 13 class CFX_Edit;
14 class CFX_PathData; 14 class CFX_PathData;
15 15
16 struct CPWL_Color; 16 struct CPWL_Color;
17 17
18 template <class T> 18 template <class T>
19 T PWL_MIN(const T& i, const T& j) { 19 T PWL_MIN(const T& i, const T& j) {
20 return ((i < j) ? i : j); 20 return ((i < j) ? i : j);
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 CFX_PathData& path, 390 CFX_PathData& path,
391 const CFX_FloatRect& crBBox, 391 const CFX_FloatRect& crBBox,
392 const PWL_PATH_TYPE type); 392 const PWL_PATH_TYPE type);
393 static void GetGraphics_Foxit(CFX_ByteString& sPathData, 393 static void GetGraphics_Foxit(CFX_ByteString& sPathData,
394 CFX_PathData& path, 394 CFX_PathData& path,
395 const CFX_FloatRect& crBBox, 395 const CFX_FloatRect& crBBox,
396 const PWL_PATH_TYPE type); 396 const PWL_PATH_TYPE type);
397 }; 397 };
398 398
399 #endif // FPDFSDK_PDFWINDOW_PWL_UTILS_H_ 399 #endif // FPDFSDK_PDFWINDOW_PWL_UTILS_H_
OLDNEW
« no previous file with comments | « fpdfsdk/pdfwindow/PWL_FontMap.cpp ('k') | fpdfsdk/pdfwindow/PWL_Utils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698