| OLD | NEW |
| 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 _JS_DEFINE_H_ | 7 #ifndef _JS_DEFINE_H_ |
| 8 #define _JS_DEFINE_H_ | 8 #define _JS_DEFINE_H_ |
| 9 | 9 |
| 10 typedef v8::Value JSValue; | 10 typedef v8::Value JSValue; |
| (...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 else if (strcmp(sType,VALUE_NAME_NULL) == 0) | 776 else if (strcmp(sType,VALUE_NAME_NULL) == 0) |
| 777 return VT_null; | 777 return VT_null; |
| 778 else if (strcmp(sType,VALUE_NAME_UNDEFINED) == 0) | 778 else if (strcmp(sType,VALUE_NAME_UNDEFINED) == 0) |
| 779 return VT_undefined; | 779 return VT_undefined; |
| 780 */ | 780 */ |
| 781 | 781 |
| 782 return VT_unknown; | 782 return VT_unknown; |
| 783 } | 783 } |
| 784 | 784 |
| 785 #endif //_JS_DEFINE_H_ | 785 #endif //_JS_DEFINE_H_ |
| OLD | NEW |