| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008, 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2008, 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * Copyright (C) 2011 Google Inc. All rights reserved. | 4 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1048 this._timelineGrid.removeEventDividers(); | 1048 this._timelineGrid.removeEventDividers(); |
| 1049 | 1049 |
| 1050 if (this._dataGrid) { | 1050 if (this._dataGrid) { |
| 1051 this._dataGrid.rootNode().removeChildren(); | 1051 this._dataGrid.rootNode().removeChildren(); |
| 1052 this._updateDividersIfNeeded(); | 1052 this._updateDividersIfNeeded(); |
| 1053 this._updateSummaryBar(); | 1053 this._updateSummaryBar(); |
| 1054 } | 1054 } |
| 1055 }, | 1055 }, |
| 1056 | 1056 |
| 1057 /** | 1057 /** |
| 1058 * @param {string} filterString | 1058 * @param {string} filterString |
| 1059 */ | 1059 */ |
| 1060 setTextFilterValue: function(filterString) | 1060 setTextFilterValue: function(filterString) |
| 1061 { | 1061 { |
| 1062 this._textFilterUI.setValue(filterString); | 1062 this._textFilterUI.setValue(filterString); |
| 1063 this._textFilterUI.setRegexChecked(false); |
| 1064 this._dataURLFilterUI.setChecked(false); |
| 1065 this._resourceCategoryFilterUI.reset(); |
| 1063 }, | 1066 }, |
| 1064 | 1067 |
| 1065 /** | 1068 /** |
| 1066 * @param {!WebInspector.Event} event | 1069 * @param {!WebInspector.Event} event |
| 1067 */ | 1070 */ |
| 1068 _onRequestStarted: function(event) | 1071 _onRequestStarted: function(event) |
| 1069 { | 1072 { |
| 1070 if (!this._recording) | 1073 if (!this._recording) |
| 1071 return; | 1074 return; |
| 1072 var request = /** @type {!WebInspector.NetworkRequest} */ (event.data); | 1075 var request = /** @type {!WebInspector.NetworkRequest} */ (event.data); |
| (...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2183 return false; | 2186 return false; |
| 2184 return true; | 2187 return true; |
| 2185 } | 2188 } |
| 2186 | 2189 |
| 2187 WebInspector.NetworkLogView.EventTypes = { | 2190 WebInspector.NetworkLogView.EventTypes = { |
| 2188 RequestSelected: "RequestSelected", | 2191 RequestSelected: "RequestSelected", |
| 2189 SearchCountUpdated: "SearchCountUpdated", | 2192 SearchCountUpdated: "SearchCountUpdated", |
| 2190 SearchIndexUpdated: "SearchIndexUpdated", | 2193 SearchIndexUpdated: "SearchIndexUpdated", |
| 2191 UpdateRequest: "UpdateRequest" | 2194 UpdateRequest: "UpdateRequest" |
| 2192 }; | 2195 }; |
| OLD | NEW |