Changeset 5
- Timestamp:
- 12/22/07 03:03:26 (3 years ago)
- Files:
-
- trunk/Implementations/Ivy/IvyRequest.h (modified) (3 diffs)
- trunk/Implementations/Ivy/IvyWrapAppCb.h (modified) (2 diffs)
- trunk/Implementations/Ivy/IvyWrapCallback.h (modified) (1 diff)
- trunk/Implementations/Ivy/IvyWrapMsgCb.h (modified) (3 diffs)
- trunk/Implementations/Ivy/IvyWrapper.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Implementations/Ivy/IvyRequest.h
r3 r5 43 43 } 44 44 45 using namespace KJS::Bindings;46 using namespace WebCore;47 48 45 namespace KJS { 49 46 … … 56 53 * @see JavascriptCore/bindings/testbalbindings for a more complete example 57 54 */ 58 class IvyRequest : public BalObject {55 class IvyRequest : public KJS::Bindings::BalObject { 59 56 60 57 public: … … 76 73 RefPtr<IvyWrapper> m_ivyWrapper; 77 74 78 }; //IvyRequest75 }; // IvyRequest 79 76 80 } ;// namespace KJS77 } // namespace KJS 81 78 82 #endif // IvyRequest_h79 #endif // IvyRequest_h trunk/Implementations/Ivy/IvyWrapAppCb.h
r2 r5 37 37 38 38 using namespace WebCore; 39 39 40 /** 40 41 * @brief Ivy application callback class … … 83 84 KJS::JSObject* m_appDisconnectCb; 84 85 85 }; // IvyWrapAppCb86 }; // IvyWrapAppCb 86 87 87 #endif // IvyWrapAppCb_h88 #endif // IvyWrapAppCb_h trunk/Implementations/Ivy/IvyWrapCallback.h
r3 r5 133 133 }; 134 134 135 #endif // IvyWrapCallback_h135 #endif // IvyWrapCallback_h trunk/Implementations/Ivy/IvyWrapMsgCb.h
r3 r5 48 48 * @see IvyWrapCallback 49 49 */ 50 50 51 class IvyWrapMsgCb: public IvyWrapCallback, public IvyMessageCallback { 51 52 … … 58 59 IvyWrapMsgCb(WebCore::Frame*, KJS::UString& regExp, KJS::JSValue* scriptCb); 59 60 60 // FIXME : Usefull ?61 // FIXME : Usefull ? 61 62 void IvyChangeMsgCb(KJS::ExecState*, KJS::JSValue*); 62 63 … … 73 74 KJS::JSObject* m_scriptCb; 74 75 75 }; // class IvyWrapMsgCb76 }; // class IvyWrapMsgCb 76 77 77 #endif // IvyWrapMsgCb_h78 #endif // IvyWrapMsgCb_h trunk/Implementations/Ivy/IvyWrapper.h
r3 r5 151 151 }; 152 152 153 #endif // IvyWrapper_h153 #endif // IvyWrapper_h
