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

Unified Diff: third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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
Index: third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js
diff --git a/third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js b/third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js
index 186fccab21e5e35471d868433c4d95da742172b1..c7acf11511d23d298a4a5c90c2339a211d751583 100644
--- a/third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js
+++ b/third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js
@@ -4,29 +4,29 @@
/**
* @unrestricted
*/
-WebInspector.DefaultMapping = class {
+Persistence.DefaultMapping = class {
/**
- * @param {!WebInspector.Workspace} workspace
- * @param {!WebInspector.FileSystemMapping} fileSystemMapping
- * @param {function(!WebInspector.PersistenceBinding)} onBindingCreated
- * @param {function(!WebInspector.PersistenceBinding)} onBindingRemoved
+ * @param {!Workspace.Workspace} workspace
+ * @param {!Workspace.FileSystemMapping} fileSystemMapping
+ * @param {function(!Persistence.PersistenceBinding)} onBindingCreated
+ * @param {function(!Persistence.PersistenceBinding)} onBindingRemoved
*/
constructor(workspace, fileSystemMapping, onBindingCreated, onBindingRemoved) {
this._workspace = workspace;
this._fileSystemMapping = fileSystemMapping;
- /** @type {!Set<!WebInspector.PersistenceBinding>} */
+ /** @type {!Set<!Persistence.PersistenceBinding>} */
this._bindings = new Set();
this._onBindingCreated = onBindingCreated;
this._onBindingRemoved = onBindingRemoved;
this._eventListeners = [
- workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._onUISourceCodeAdded, this),
- workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._onUISourceCodeRemoved, this),
- workspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, this._onProjectRemoved, this),
+ workspace.addEventListener(Workspace.Workspace.Events.UISourceCodeAdded, this._onUISourceCodeAdded, this),
+ workspace.addEventListener(Workspace.Workspace.Events.UISourceCodeRemoved, this._onUISourceCodeRemoved, this),
+ workspace.addEventListener(Workspace.Workspace.Events.ProjectRemoved, this._onProjectRemoved, this),
this._fileSystemMapping.addEventListener(
- WebInspector.FileSystemMapping.Events.FileMappingAdded, this._remap, this),
+ Workspace.FileSystemMapping.Events.FileMappingAdded, this._remap, this),
this._fileSystemMapping.addEventListener(
- WebInspector.FileSystemMapping.Events.FileMappingRemoved, this._remap, this)
+ Workspace.FileSystemMapping.Events.FileMappingRemoved, this._remap, this)
];
this._remap();
}
@@ -34,7 +34,7 @@ WebInspector.DefaultMapping = class {
_remap() {
for (var binding of this._bindings.valuesArray())
this._unbind(binding.network);
- var networkProjects = this._workspace.projectsForType(WebInspector.projectTypes.Network);
+ var networkProjects = this._workspace.projectsForType(Workspace.projectTypes.Network);
for (var networkProject of networkProjects) {
for (var uiSourceCode of networkProject.uiSourceCodes())
this._bind(uiSourceCode);
@@ -42,98 +42,98 @@ WebInspector.DefaultMapping = class {
}
/**
- * @param {!WebInspector.Event} event
+ * @param {!Common.Event} event
*/
_onUISourceCodeAdded(event) {
- var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (event.data);
+ var uiSourceCode = /** @type {!Workspace.UISourceCode} */ (event.data);
this._bind(uiSourceCode);
}
/**
- * @param {!WebInspector.Event} event
+ * @param {!Common.Event} event
*/
_onUISourceCodeRemoved(event) {
- var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (event.data);
+ var uiSourceCode = /** @type {!Workspace.UISourceCode} */ (event.data);
this._unbind(uiSourceCode);
}
/**
- * @param {!WebInspector.Event} event
+ * @param {!Common.Event} event
*/
_onProjectRemoved(event) {
- var project = /** @type {!WebInspector.Project} */ (event.data);
+ var project = /** @type {!Workspace.Project} */ (event.data);
for (var uiSourceCode of project.uiSourceCodes())
this._unbind(uiSourceCode);
}
/**
- * @param {!WebInspector.UISourceCode} uiSourceCode
- * @return {?WebInspector.PersistenceBinding}
+ * @param {!Workspace.UISourceCode} uiSourceCode
+ * @return {?Persistence.PersistenceBinding}
*/
_createBinding(uiSourceCode) {
- if (uiSourceCode.project().type() === WebInspector.projectTypes.FileSystem) {
- var fileSystemPath = WebInspector.FileSystemWorkspaceBinding.fileSystemPath(uiSourceCode.project().id());
+ if (uiSourceCode.project().type() === Workspace.projectTypes.FileSystem) {
+ var fileSystemPath = Bindings.FileSystemWorkspaceBinding.fileSystemPath(uiSourceCode.project().id());
var networkURL = this._fileSystemMapping.networkURLForFileSystemURL(fileSystemPath, uiSourceCode.url());
var networkSourceCode = networkURL ? this._workspace.uiSourceCodeForURL(networkURL) : null;
- return networkSourceCode ? new WebInspector.PersistenceBinding(networkSourceCode, uiSourceCode, false) : null;
+ return networkSourceCode ? new Persistence.PersistenceBinding(networkSourceCode, uiSourceCode, false) : null;
}
- if (uiSourceCode.project().type() === WebInspector.projectTypes.Network) {
+ if (uiSourceCode.project().type() === Workspace.projectTypes.Network) {
var file = this._fileSystemMapping.fileForURL(uiSourceCode.url());
- var projectId = file ? WebInspector.FileSystemWorkspaceBinding.projectId(file.fileSystemPath) : null;
+ var projectId = file ? Bindings.FileSystemWorkspaceBinding.projectId(file.fileSystemPath) : null;
var fileSourceCode = file && projectId ? this._workspace.uiSourceCode(projectId, file.fileURL) : null;
- return fileSourceCode ? new WebInspector.PersistenceBinding(uiSourceCode, fileSourceCode, false) : null;
+ return fileSourceCode ? new Persistence.PersistenceBinding(uiSourceCode, fileSourceCode, false) : null;
}
return null;
}
/**
- * @param {!WebInspector.UISourceCode} uiSourceCode
+ * @param {!Workspace.UISourceCode} uiSourceCode
*/
_bind(uiSourceCode) {
- console.assert(!uiSourceCode[WebInspector.DefaultMapping._binding], 'Cannot bind already bound UISourceCode!');
+ console.assert(!uiSourceCode[Persistence.DefaultMapping._binding], 'Cannot bind already bound UISourceCode!');
var binding = this._createBinding(uiSourceCode);
if (!binding)
return;
this._bindings.add(binding);
- binding.network[WebInspector.DefaultMapping._binding] = binding;
- binding.fileSystem[WebInspector.DefaultMapping._binding] = binding;
+ binding.network[Persistence.DefaultMapping._binding] = binding;
+ binding.fileSystem[Persistence.DefaultMapping._binding] = binding;
binding.fileSystem.addEventListener(
- WebInspector.UISourceCode.Events.TitleChanged, this._onFileSystemUISourceCodeRenamed, this);
+ Workspace.UISourceCode.Events.TitleChanged, this._onFileSystemUISourceCodeRenamed, this);
this._onBindingCreated.call(null, binding);
}
/**
- * @param {!WebInspector.UISourceCode} uiSourceCode
+ * @param {!Workspace.UISourceCode} uiSourceCode
*/
_unbind(uiSourceCode) {
- var binding = uiSourceCode[WebInspector.DefaultMapping._binding];
+ var binding = uiSourceCode[Persistence.DefaultMapping._binding];
if (!binding)
return;
this._bindings.delete(binding);
- binding.network[WebInspector.DefaultMapping._binding] = null;
- binding.fileSystem[WebInspector.DefaultMapping._binding] = null;
+ binding.network[Persistence.DefaultMapping._binding] = null;
+ binding.fileSystem[Persistence.DefaultMapping._binding] = null;
binding.fileSystem.removeEventListener(
- WebInspector.UISourceCode.Events.TitleChanged, this._onFileSystemUISourceCodeRenamed, this);
+ Workspace.UISourceCode.Events.TitleChanged, this._onFileSystemUISourceCodeRenamed, this);
this._onBindingRemoved.call(null, binding);
}
/**
- * @param {!WebInspector.Event} event
+ * @param {!Common.Event} event
*/
_onFileSystemUISourceCodeRenamed(event) {
- var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (event.target);
- var binding = uiSourceCode[WebInspector.DefaultMapping._binding];
+ var uiSourceCode = /** @type {!Workspace.UISourceCode} */ (event.target);
+ var binding = uiSourceCode[Persistence.DefaultMapping._binding];
this._unbind(binding.network);
this._bind(binding.network);
}
dispose() {
- WebInspector.EventTarget.removeEventListeners(this._eventListeners);
+ Common.EventTarget.removeEventListeners(this._eventListeners);
}
};
-WebInspector.DefaultMapping._binding = Symbol('DefaultMapping.Binding');
+Persistence.DefaultMapping._binding = Symbol('DefaultMapping.Binding');

Powered by Google App Engine
This is Rietveld 408576698