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

Side by Side Diff: fpdfsdk/javascript/Icon.h

Issue 2453683011: Remove FX_BOOL from fpdfsdk. (Closed)
Patch Set: Regenerate patch after rebase. Created 4 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
« no previous file with comments | « fpdfsdk/javascript/Field.cpp ('k') | fpdfsdk/javascript/Icon.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 FPDFSDK_JAVASCRIPT_ICON_H_ 7 #ifndef FPDFSDK_JAVASCRIPT_ICON_H_
8 #define FPDFSDK_JAVASCRIPT_ICON_H_ 8 #define FPDFSDK_JAVASCRIPT_ICON_H_
9 9
10 #include "fpdfsdk/javascript/JS_Define.h" 10 #include "fpdfsdk/javascript/JS_Define.h"
11 11
12 class CPDF_Stream; 12 class CPDF_Stream;
13 13
14 class Icon : public CJS_EmbedObj { 14 class Icon : public CJS_EmbedObj {
15 public: 15 public:
16 explicit Icon(CJS_Object* pJSObject); 16 explicit Icon(CJS_Object* pJSObject);
17 ~Icon() override; 17 ~Icon() override;
18 18
19 FX_BOOL name(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); 19 bool name(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
20 void SetStream(CPDF_Stream* pIconStream); 20 void SetStream(CPDF_Stream* pIconStream);
21 CPDF_Stream* GetStream(); 21 CPDF_Stream* GetStream();
22 void SetIconName(CFX_WideString name); 22 void SetIconName(CFX_WideString name);
23 CFX_WideString GetIconName(); 23 CFX_WideString GetIconName();
24 24
25 private: 25 private:
26 CPDF_Stream* m_pIconStream; 26 CPDF_Stream* m_pIconStream;
27 CFX_WideString m_swIconName; 27 CFX_WideString m_swIconName;
28 }; 28 };
29 29
30 class CJS_Icon : public CJS_Object { 30 class CJS_Icon : public CJS_Object {
31 public: 31 public:
32 explicit CJS_Icon(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} 32 explicit CJS_Icon(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
33 ~CJS_Icon() override {} 33 ~CJS_Icon() override {}
34 34
35 DECLARE_JS_CLASS(); 35 DECLARE_JS_CLASS();
36 JS_STATIC_PROP(name, Icon); 36 JS_STATIC_PROP(name, Icon);
37 }; 37 };
38 38
39 #endif // FPDFSDK_JAVASCRIPT_ICON_H_ 39 #endif // FPDFSDK_JAVASCRIPT_ICON_H_
OLDNEW
« no previous file with comments | « fpdfsdk/javascript/Field.cpp ('k') | fpdfsdk/javascript/Icon.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698