| Index: Source/bindings/v8/WorkerScriptController.h
|
| diff --git a/Source/bindings/v8/WorkerScriptController.h b/Source/bindings/v8/WorkerScriptController.h
|
| index dc8903b65c0bfcc2b359737730238a85262fd95e..4e72f3054eddccc4f0a31d8438de93312f8ddcd7 100644
|
| --- a/Source/bindings/v8/WorkerScriptController.h
|
| +++ b/Source/bindings/v8/WorkerScriptController.h
|
| @@ -48,6 +48,7 @@ namespace WebCore {
|
| WorkerGlobalScopeExecutionState()
|
| : hadException(false)
|
| , lineNumber(0)
|
| + , columnNumber(0)
|
| {
|
| }
|
|
|
| @@ -55,6 +56,7 @@ namespace WebCore {
|
| ScriptValue exception;
|
| String errorMessage;
|
| int lineNumber;
|
| + int columnNumber;
|
| String sourceURL;
|
| };
|
|
|
|
|