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

Side by Side Diff: xfa/fxgraphics/cagg_graphics.h

Issue 1943413002: Convert FWL_ERR into an enum class. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@bcdattribute
Patch Set: Created 4 years, 7 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/fxfa/app/xfa_fwltheme.cpp ('k') | xfa/fxgraphics/cagg_graphics.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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 XFA_FXGRAPHICS_CAGG_GRAPHICS_H_ 7 #ifndef XFA_FXGRAPHICS_CAGG_GRAPHICS_H_
8 #define XFA_FXGRAPHICS_CAGG_GRAPHICS_H_ 8 #define XFA_FXGRAPHICS_CAGG_GRAPHICS_H_
9 9
10 #include "core/fxge/include/fx_dib.h" 10 #include "core/fxge/include/fx_dib.h"
11 #include "xfa/fxgraphics/include/cfx_graphics.h" 11 #include "xfa/fxgraphics/include/cfx_graphics.h"
12 12
13 class CFX_Graphics; 13 class CFX_Graphics;
14 14
15 class CAGG_Graphics { 15 class CAGG_Graphics {
16 public: 16 public:
17 CAGG_Graphics(); 17 CAGG_Graphics();
18 virtual ~CAGG_Graphics(); 18 virtual ~CAGG_Graphics();
19 19
20 FX_ERR Create(CFX_Graphics* owner, 20 FWL_Error Create(CFX_Graphics* owner,
21 int32_t width, 21 int32_t width,
22 int32_t height, 22 int32_t height,
23 FXDIB_Format format); 23 FXDIB_Format format);
24 24
25 private: 25 private:
26 CFX_Graphics* m_owner; 26 CFX_Graphics* m_owner;
27 }; 27 };
28 28
29 #endif // XFA_FXGRAPHICS_CAGG_GRAPHICS_H_ 29 #endif // XFA_FXGRAPHICS_CAGG_GRAPHICS_H_
OLDNEW
« no previous file with comments | « xfa/fxfa/app/xfa_fwltheme.cpp ('k') | xfa/fxgraphics/cagg_graphics.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698