| Index: webkit/glue/devtools/js/devtools.js
|
| diff --git a/webkit/glue/devtools/js/devtools.js b/webkit/glue/devtools/js/devtools.js
|
| index 75c31938c4bd9a36f9c4d4290de63b2c528dfe06..a6746caa6e256a14548d308c6a73db881e378e7f 100644
|
| --- a/webkit/glue/devtools/js/devtools.js
|
| +++ b/webkit/glue/devtools/js/devtools.js
|
| @@ -449,23 +449,6 @@ WebInspector.ConsoleMessage.prototype.setMessageBody = function(args) {
|
| };
|
| })();
|
|
|
| -// Temporary fix for http://crbug/23260.
|
| -(function() {
|
| -var orig = WebInspector.ResourcesPanel.prototype._createResourceView;
|
| -WebInspector.ResourcesPanel.prototype._createResourceView = function(
|
| - resource) {
|
| - if (resource.type == undefined && resource.url) {
|
| - if (resource.url.search('\.js$') != -1) {
|
| - resource.type = WebInspector.Resource.Type.Script;
|
| - } else if (resource.url.search('\.html$') != -1) {
|
| - resource.type = WebInspector.Resource.Type.Document;
|
| - }
|
| - }
|
| -
|
| - return orig.apply(this, arguments);
|
| -};
|
| -})();
|
| -
|
|
|
| (function() {
|
| var orig = InjectedScriptAccess.getCompletions;
|
|
|