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

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

Issue 1419373005: Make checkdeps --resolve-dotdot succeed. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: add comments, more explicit disallows 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_RENDER_H_ 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_
8 #define CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_
9 9
10 #include "../../../public/fpdf_progressive.h"
Tom Sepez 2015/11/04 18:50:56 Hence, this really is illegal.
Lei Zhang 2015/11/04 19:31:18 Umm, ya, like this one.
10 #include "../../../third_party/base/nonstd_unique_ptr.h" 11 #include "../../../third_party/base/nonstd_unique_ptr.h"
11 #include "../../../public/fpdf_progressive.h"
12 #include "../fxge/fx_ge.h" 12 #include "../fxge/fx_ge.h"
13 #include "fpdf_page.h" 13 #include "fpdf_page.h"
14 14
15 class CFX_GraphStateData; 15 class CFX_GraphStateData;
16 class CFX_PathData; 16 class CFX_PathData;
17 class CFX_RenderDevice; 17 class CFX_RenderDevice;
18 class CPDF_FormObject; 18 class CPDF_FormObject;
19 class CPDF_ImageCache; 19 class CPDF_ImageCache;
20 class CPDF_ImageObject; 20 class CPDF_ImageObject;
21 class CPDF_PathObject; 21 class CPDF_PathObject;
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 public: 284 public:
285 CPDF_RenderConfig(); 285 CPDF_RenderConfig();
286 ~CPDF_RenderConfig(); 286 ~CPDF_RenderConfig();
287 int m_HalftoneLimit; 287 int m_HalftoneLimit;
288 int m_RenderStepLimit; 288 int m_RenderStepLimit;
289 }; 289 };
290 290
291 FX_BOOL IsAvailableMatrix(const CFX_AffineMatrix& matrix); 291 FX_BOOL IsAvailableMatrix(const CFX_AffineMatrix& matrix);
292 292
293 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ 293 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698