Changeset 18657 in webkit for trunk/JavaScriptCore/bindings/runtime.cpp
- Timestamp:
- Jan 7, 2007, 9:11:18 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime.cpp
r18461 r18657 30 30 #include "NP_jsobject.h" 31 31 #include "c_instance.h" 32 #if HAVE(JNI) 33 #include "jni_instance.h" 34 #endif 32 35 #if PLATFORM(MAC) 33 #include "jni_instance.h"34 36 #include "objc_instance.h" 35 37 #endif … … 118 120 119 121 switch (language) { 120 #if PLATFORM(MAC)122 #if HAVE(JNI) 121 123 case Instance::JavaLanguage: { 122 124 newInstance = new Bindings::JavaInstance((jobject)nativeInstance, rootObject); 123 125 break; 124 126 } 127 #endif 128 #if PLATFORM(MAC) 125 129 case Instance::ObjectiveCLanguage: { 126 130 newInstance = new Bindings::ObjcInstance((ObjectStructPtr)nativeInstance);
Note:
See TracChangeset
for help on using the changeset viewer.