| Index: third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js b/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js | 
| index 6d22ee76e9a4a669daf92e70a39cc162905cd21a..e16ade88a3d4969972d1f6adc31f8de1975d0d64 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js | 
| @@ -243,6 +243,17 @@ WebInspector.DebuggerWorkspaceBinding.prototype = { | 
| }, | 
|  | 
| /** | 
| +     * @param {!WebInspector.Script} script | 
| +     */ | 
| +    maybeLoadSourceMap: function(script) | 
| +    { | 
| +        var targetData = this._targetToData.get(script.target()); | 
| +        if (!targetData) | 
| +            return; | 
| +        targetData._compilerMapping.maybeLoadSourceMap(script); | 
| +    }, | 
| + | 
| +    /** | 
| * @param {!WebInspector.Event} event | 
| */ | 
| _globalObjectCleared: function(event) | 
|  |