Searched refs:urlPrefix (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/ |
D | EditFileSystemDialog.js | 153 delete this._entries[entry.urlPrefix]; 154 if (this._fileMappingsList.itemForId(entry.urlPrefix)) 155 this._fileMappingsList.removeItem(entry.urlPrefix); 171 return entry.urlPrefix; 197 var urlPrefix = itemId; 200 …ector.isolatedFileSystemManager.mapping().removeFileMapping(fileSystemPath, urlPrefix, pathPrefix); 211 _validateMapping: function(urlPrefix, allowedURLPrefix, path, allowedPathPrefix) argument 214 if (!this._checkURLPrefix(urlPrefix, allowedURLPrefix)) 226 var urlPrefix = /** @type{?string} */ (event.data); 227 if (!urlPrefix) [all …]
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | FileSystemMapping.js | 104 …Inspector.FileSystemMapping.Entry(savedEntry.fileSystemPath, savedEntry.urlPrefix, savedEntry.path… 147 this._mappingForURLPrefix[entry.urlPrefix] = entry; 148 this._urlPrefixes.push(entry.urlPrefix); 183 addFileMapping: function(fileSystemPath, urlPrefix, pathPrefix) argument 185 var entry = new WebInspector.FileSystemMapping.Entry(fileSystemPath, urlPrefix, pathPrefix); 196 removeFileMapping: function(fileSystemPath, urlPrefix, pathPrefix) argument 249 var urlPrefix = this._urlPrefixes[i]; 250 if (url.startsWith(urlPrefix)) 251 return this._mappingForURLPrefix[urlPrefix]; 368 file.filePath = entry.pathPrefix.substr(1) + url.substr(entry.urlPrefix.length); [all …]
|