diff -r d09674a63329 -r d367ed1b2991 org.chromium.debug.core/src/org/chromium/debug/core/model/StackFrame.java --- a/org.chromium.debug.core/src/org/chromium/debug/core/model/StackFrame.java Mon Feb 08 15:20:59 2010 -0800 +++ b/org.chromium.debug.core/src/org/chromium/debug/core/model/StackFrame.java Tue Feb 09 10:49:02 2010 -0800 @@ -195,7 +195,7 @@ public int getLineNumber() throws DebugException { // convert 0-based to 1-based - return stackFrame.getLineNumber() + 1; + return getDebugTarget().getLineNumber(stackFrame); } public int getCharStart() throws DebugException {