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

Side by Side Diff: fpdfsdk/include/javascript/Document.h

Issue 436483002: Fix a few more -Wreorder warnings. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 6 years, 4 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 | « core/src/fpdfdoc/doc_vt.cpp ('k') | fpdfsdk/src/fsdk_mgr.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 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 _DOCUMENT_H_ 7 #ifndef _DOCUMENT_H_
8 #define _DOCUMENT_H_ 8 #define _DOCUMENT_H_
9 9
10 10
(...skipping 23 matching lines...) Expand all
34 34
35 DECLARE_JS_CLASS(CJS_PrintParamsObj); 35 DECLARE_JS_CLASS(CJS_PrintParamsObj);
36 }; 36 };
37 37
38 38
39 class Icon; 39 class Icon;
40 class Field; 40 class Field;
41 41
42 struct IconElement 42 struct IconElement
43 { 43 {
44 » IconElement() : IconName(L""), IconStream(NULL), NextIcon(NULL){} 44 » IconElement() : IconName(L""), NextIcon(NULL), IconStream(NULL) {}
45 virtual ~IconElement() 45 virtual ~IconElement()
46 { 46 {
47 } 47 }
48 CFX_WideString IconName; 48 CFX_WideString IconName;
49 IconElement* NextIcon; 49 IconElement* NextIcon;
50 Icon* IconStream; 50 Icon* IconStream;
51 }; 51 };
52 52
53 class IconTree 53 class IconTree
54 { 54 {
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 JS_STATIC_METHOD(replacePages, Document); 273 JS_STATIC_METHOD(replacePages, Document);
274 JS_STATIC_METHOD(removeIcon, Document); 274 JS_STATIC_METHOD(removeIcon, Document);
275 JS_STATIC_METHOD(resetForm, Document); 275 JS_STATIC_METHOD(resetForm, Document);
276 JS_STATIC_METHOD(saveAs, Document); 276 JS_STATIC_METHOD(saveAs, Document);
277 JS_STATIC_METHOD(submitForm, Document); 277 JS_STATIC_METHOD(submitForm, Document);
278 JS_STATIC_METHOD(mailDoc, Document); 278 JS_STATIC_METHOD(mailDoc, Document);
279 }; 279 };
280 280
281 #endif//_DOCUMENT_H_ 281 #endif//_DOCUMENT_H_
282 282
OLDNEW
« no previous file with comments | « core/src/fpdfdoc/doc_vt.cpp ('k') | fpdfsdk/src/fsdk_mgr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698