Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1356)

Unified Diff: Source/devtools/front_end/sdk/DOMStorage.js

Issue 369853002: DevTools: Rename TargetAwareObject into SDKObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/sdk/DOMModel.js ('k') | Source/devtools/front_end/sdk/Database.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/DOMStorage.js
diff --git a/Source/devtools/front_end/sdk/DOMStorage.js b/Source/devtools/front_end/sdk/DOMStorage.js
index 251fb9a832a5a77bd868b85662c66b696e327a47..b7e00d42b7f8a168fd2f9c27c8cbcd02f011ad4a 100644
--- a/Source/devtools/front_end/sdk/DOMStorage.js
+++ b/Source/devtools/front_end/sdk/DOMStorage.js
@@ -108,12 +108,12 @@ WebInspector.DOMStorage.prototype = {
/**
* @constructor
- * @extends {WebInspector.TargetAwareObject}
+ * @extends {WebInspector.SDKObject}
* @param {!WebInspector.Target} target
*/
WebInspector.DOMStorageModel = function(target)
{
- WebInspector.TargetAwareObject.call(this, target);
+ WebInspector.SDKObject.call(this, target);
/** @type {!Object.<string, !WebInspector.DOMStorage>} */
this._storages = {};
@@ -257,7 +257,7 @@ WebInspector.DOMStorageModel.prototype = {
return result;
},
- __proto__: WebInspector.TargetAwareObject.prototype
+ __proto__: WebInspector.SDKObject.prototype
}
/**
« no previous file with comments | « Source/devtools/front_end/sdk/DOMModel.js ('k') | Source/devtools/front_end/sdk/Database.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698