| Index: third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js b/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| index 7235e4cc14e9af450cec257bdb42f8c72b377113..d747b362675293038e86f04f8f5a259f8447dc6f 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| @@ -265,6 +265,16 @@ WebInspector.Persistence.prototype = {
|
| },
|
|
|
| /**
|
| + * @param {!WebInspector.UISourceCode} uiSourceCode
|
| + * @return {?WebInspector.UISourceCode}
|
| + */
|
| + fileSystem: function(uiSourceCode)
|
| + {
|
| + var binding = this.binding(uiSourceCode);
|
| + return binding ? binding.fileSystem : null;
|
| + },
|
| +
|
| + /**
|
| * @param {string} filePath
|
| */
|
| _addFilePathBindingPrefixes: function(filePath)
|
|
|