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

Side by Side Diff: core/include/fpdfapi/fpdf_module.h

Issue 1425153006: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: comments, GN formatting, DEPS roll 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
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 CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_
8 #define CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ 8 #define CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_
9 9
10 #include "../../../third_party/base/nonstd_unique_ptr.h"
11 #include "../fxcrt/fx_coordinates.h" 10 #include "../fxcrt/fx_coordinates.h"
12 #include "../fxcrt/fx_system.h" 11 #include "../fxcrt/fx_system.h"
12 #include "third_party/base/nonstd_unique_ptr.h"
Tom Sepez 2015/11/05 22:09:26 Ok, is there such a thing under chromium's base?
Lei Zhang 2015/11/06 00:13:37 There is not such a thing, but it will look there.
13 13
14 class CCodec_ModuleMgr; 14 class CCodec_ModuleMgr;
15 class CFX_AffineMatrix; 15 class CFX_AffineMatrix;
16 class CFX_BitmapDevice; 16 class CFX_BitmapDevice;
17 class CFX_DIBSource; 17 class CFX_DIBSource;
18 class CPDF_ColorSpace; 18 class CPDF_ColorSpace;
19 class CPDF_Dictionary; 19 class CPDF_Dictionary;
20 class CPDF_DocPageData; 20 class CPDF_DocPageData;
21 class CPDF_DocRenderData; 21 class CPDF_DocRenderData;
22 class CPDF_Document; 22 class CPDF_Document;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 virtual CPDF_DocRenderData* CreateDocData(CPDF_Document* pDoc) = 0; 104 virtual CPDF_DocRenderData* CreateDocData(CPDF_Document* pDoc) = 0;
105 virtual void DestroyDocData(CPDF_DocRenderData*) = 0; 105 virtual void DestroyDocData(CPDF_DocRenderData*) = 0;
106 virtual void ClearDocData(CPDF_DocRenderData*) = 0; 106 virtual void ClearDocData(CPDF_DocRenderData*) = 0;
107 virtual CPDF_DocRenderData* GetRenderData() = 0; 107 virtual CPDF_DocRenderData* GetRenderData() = 0;
108 virtual CPDF_PageRenderCache* CreatePageCache(CPDF_Page* pPage) = 0; 108 virtual CPDF_PageRenderCache* CreatePageCache(CPDF_Page* pPage) = 0;
109 virtual void DestroyPageCache(CPDF_PageRenderCache*) = 0; 109 virtual void DestroyPageCache(CPDF_PageRenderCache*) = 0;
110 virtual CPDF_RenderConfig* GetConfig() = 0; 110 virtual CPDF_RenderConfig* GetConfig() = 0;
111 }; 111 };
112 112
113 #endif // CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ 113 #endif // CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_
OLDNEW
« BUILD.gn ('K') | « build/standalone.gypi ('k') | core/include/fpdfapi/fpdf_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698