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

Side by Side Diff: core/include/fxcrt/fx_basic.h

Issue 1534003002: FX_NAMESPACE_DECLARE pointless. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years 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 | « no previous file | core/src/fxge/agg/include/fx_agg_driver.h » ('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 CORE_INCLUDE_FXCRT_FX_BASIC_H_ 7 #ifndef CORE_INCLUDE_FXCRT_FX_BASIC_H_
8 #define CORE_INCLUDE_FXCRT_FX_BASIC_H_ 8 #define CORE_INCLUDE_FXCRT_FX_BASIC_H_
9 9
10 #include "fx_memory.h" 10 #include "fx_memory.h"
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 CFX_DWordListArray; 1086 CFX_DWordListArray;
1087 typedef enum { 1087 typedef enum {
1088 Ready, 1088 Ready,
1089 ToBeContinued, 1089 ToBeContinued,
1090 Found, 1090 Found,
1091 NotFound, 1091 NotFound,
1092 Failed, 1092 Failed,
1093 Done 1093 Done
1094 } FX_ProgressiveStatus; 1094 } FX_ProgressiveStatus;
1095 #define ProgressiveStatus FX_ProgressiveStatus 1095 #define ProgressiveStatus FX_ProgressiveStatus
1096 #define FX_NAMESPACE_DECLARE(namespace, type) namespace ::type
1097 1096
1098 class CFX_Vector_3by1 { 1097 class CFX_Vector_3by1 {
1099 public: 1098 public:
1100 CFX_Vector_3by1() : a(0.0f), b(0.0f), c(0.0f) {} 1099 CFX_Vector_3by1() : a(0.0f), b(0.0f), c(0.0f) {}
1101 1100
1102 CFX_Vector_3by1(FX_FLOAT a1, FX_FLOAT b1, FX_FLOAT c1) 1101 CFX_Vector_3by1(FX_FLOAT a1, FX_FLOAT b1, FX_FLOAT c1)
1103 : a(a1), b(b1), c(c1) {} 1102 : a(a1), b(b1), c(c1) {}
1104 1103
1105 FX_FLOAT a; 1104 FX_FLOAT a;
1106 FX_FLOAT b; 1105 FX_FLOAT b;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 FX_FLOAT c; 1140 FX_FLOAT c;
1142 FX_FLOAT d; 1141 FX_FLOAT d;
1143 FX_FLOAT e; 1142 FX_FLOAT e;
1144 FX_FLOAT f; 1143 FX_FLOAT f;
1145 FX_FLOAT g; 1144 FX_FLOAT g;
1146 FX_FLOAT h; 1145 FX_FLOAT h;
1147 FX_FLOAT i; 1146 FX_FLOAT i;
1148 }; 1147 };
1149 1148
1150 #endif // CORE_INCLUDE_FXCRT_FX_BASIC_H_ 1149 #endif // CORE_INCLUDE_FXCRT_FX_BASIC_H_
OLDNEW
« no previous file with comments | « no previous file | core/src/fxge/agg/include/fx_agg_driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698