| Index: Source/devtools/front_end/sdk/FileSystemModel.js
|
| diff --git a/Source/devtools/front_end/sdk/FileSystemModel.js b/Source/devtools/front_end/sdk/FileSystemModel.js
|
| index 15d4660f1b198f850543dfb4b76479cb7202a289..5ded5ad0e7f04f994d4b81229cc82989f13bdab2 100644
|
| --- a/Source/devtools/front_end/sdk/FileSystemModel.js
|
| +++ b/Source/devtools/front_end/sdk/FileSystemModel.js
|
| @@ -30,12 +30,12 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.TargetAwareObject}
|
| + * @extends {WebInspector.SDKObject}
|
| * @param {!WebInspector.Target} target
|
| */
|
| WebInspector.FileSystemModel = function(target)
|
| {
|
| - WebInspector.TargetAwareObject.call(this, target);
|
| + WebInspector.SDKObject.call(this, target);
|
|
|
| this._fileSystemsForOrigin = {};
|
|
|
| @@ -352,7 +352,7 @@ WebInspector.FileSystemModel.prototype = {
|
| }
|
| },
|
|
|
| - __proto__: WebInspector.TargetAwareObject.prototype
|
| + __proto__: WebInspector.SDKObject.prototype
|
| }
|
|
|
|
|
|
|