Home | History | Annotate | Download | only in js

Lines Matching refs:URL

14  * This uses chrome.storage as backend. Items are always sorted by URL.
69 * Remembers the Drive volume's root URL used for conversions between virtual
118 var onResolveFailure = function(path, url) {
121 var existingIndex = this.getIndexByURL_(url);
146 var url =
148 if (url && volumeInfo) {
150 url,
156 onResolveFailure(path, url);
160 onResolveFailure(path, url);
242 * @param {string} value URL of the entry to be found.
399 // TODO(mtomasz): Migrate to URL.
492 * Converts the given "stored path" to the URL.
499 * @return {string} URL of the given path.
512 * Converts the URL to the stored-formatted path.
516 * @param {string} url URL of the directory in Drive.
520 convertUrlToStoredPath_: function(url) {
522 if (url.indexOf(this.lastDriveRootURL_) !== 0) {
523 console.warn(url + ' is not a drive URL.');
528 url.substr(this.lastDriveRootURL_.length));