Changeset 33313
- Timestamp:
- 05/12/08 23:02:52 (6 months ago)
- Location:
- branches/squirrelfish/WebKit/mac
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
WebView/WebScriptDebugDelegate.mm (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/squirrelfish/WebKit/mac/ChangeLog
r33307 r33313 1 2008-04-30 Geoffrey Garen <ggaren@apple.com> 2 3 Build fix: #ifdef'd out some code that doesn't work anymore. 4 1 5 2008-04-30 Geoffrey Garen <ggaren@apple.com> 2 6 -
branches/squirrelfish/WebKit/mac/WebView/WebScriptDebugDelegate.mm
r33307 r33313 175 175 - (NSString *)functionName 176 176 { 177 #if 0 177 178 ExecState* state = _private->state; 178 179 if (!state->scopeNode()) … … 185 186 Identifier fn = func->functionName(); 186 187 return toNSString(fn.ustring()); 188 #endif 189 return nil; 187 190 } 188 191 … … 208 211 - (id)evaluateWebScript:(NSString *)script 209 212 { 213 #if 0 210 214 JSLock lock; 211 215 … … 244 248 245 249 return [self _convertValueToObjcValue:result]; 246 } 247 248 @end 250 #endif 251 return nil; 252 } 253 254 @end