| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 /** | 94 /** |
| 95 * @param {string} parentPath | 95 * @param {string} parentPath |
| 96 * @param {string} name | 96 * @param {string} name |
| 97 * @param {string} url | 97 * @param {string} url |
| 98 * @param {!WebInspector.ContentProvider} contentProvider | 98 * @param {!WebInspector.ContentProvider} contentProvider |
| 99 * @return {string} | 99 * @return {string} |
| 100 */ | 100 */ |
| 101 addFile: function(parentPath, name, url, contentProvider) | 101 addFile: function(parentPath, name, url, contentProvider) |
| 102 { | 102 { |
| 103 return this.addContentProvider(parentPath, name, url, url, contentProvid
er); | 103 return this.addContentProvider(parentPath, name, url, contentProvider); |
| 104 }, | 104 }, |
| 105 | 105 |
| 106 __proto__: WebInspector.ContentProviderBasedProjectDelegate.prototype | 106 __proto__: WebInspector.ContentProviderBasedProjectDelegate.prototype |
| 107 } | 107 } |
| 108 | 108 |
| 109 /** | 109 /** |
| 110 * @constructor | 110 * @constructor |
| 111 * @param {!WebInspector.TargetManager} targetManager | 111 * @param {!WebInspector.TargetManager} targetManager |
| 112 * @param {!WebInspector.Workspace} workspace | 112 * @param {!WebInspector.Workspace} workspace |
| 113 * @param {!WebInspector.NetworkMapping} networkMapping | 113 * @param {!WebInspector.NetworkMapping} networkMapping |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 _reset: function() | 416 _reset: function() |
| 417 { | 417 { |
| 418 this._processedURLs = {}; | 418 this._processedURLs = {}; |
| 419 for (var projectId in this._projectDelegates) | 419 for (var projectId in this._projectDelegates) |
| 420 this._projectDelegates[projectId].reset(); | 420 this._projectDelegates[projectId].reset(); |
| 421 this._projectDelegates = {}; | 421 this._projectDelegates = {}; |
| 422 }, | 422 }, |
| 423 | 423 |
| 424 __proto__: WebInspector.SDKObject.prototype | 424 __proto__: WebInspector.SDKObject.prototype |
| 425 } | 425 } |
| OLD | NEW |