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

Side by Side Diff: core/src/fxcodec/jbig2/JBig2_Image.h

Issue 1707923002: Expand all paths to be based off pdfium/ directory (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Sort headers Created 4 years, 10 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
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_SRC_FXCODEC_JBIG2_JBIG2_IMAGE_H_ 7 #ifndef CORE_SRC_FXCODEC_JBIG2_JBIG2_IMAGE_H_
8 #define CORE_SRC_FXCODEC_JBIG2_JBIG2_IMAGE_H_ 8 #define CORE_SRC_FXCODEC_JBIG2_JBIG2_IMAGE_H_
9 9
10 #include "JBig2_Define.h" 10 #include "core/src/fxcodec/jbig2/JBig2_Define.h"
11 11
12 enum JBig2ComposeOp { 12 enum JBig2ComposeOp {
13 JBIG2_COMPOSE_OR = 0, 13 JBIG2_COMPOSE_OR = 0,
14 JBIG2_COMPOSE_AND = 1, 14 JBIG2_COMPOSE_AND = 1,
15 JBIG2_COMPOSE_XOR = 2, 15 JBIG2_COMPOSE_XOR = 2,
16 JBIG2_COMPOSE_XNOR = 3, 16 JBIG2_COMPOSE_XNOR = 3,
17 JBIG2_COMPOSE_REPLACE = 4 17 JBIG2_COMPOSE_REPLACE = 4
18 }; 18 };
19 19
20 struct FX_RECT; 20 struct FX_RECT;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 int32_t m_nHeight; 76 int32_t m_nHeight;
77 77
78 int32_t m_nStride; 78 int32_t m_nStride;
79 79
80 uint8_t* m_pData; 80 uint8_t* m_pData;
81 81
82 FX_BOOL m_bNeedFree; 82 FX_BOOL m_bNeedFree;
83 }; 83 };
84 84
85 #endif // CORE_SRC_FXCODEC_JBIG2_JBIG2_IMAGE_H_ 85 #endif // CORE_SRC_FXCODEC_JBIG2_JBIG2_IMAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698