Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6304)

Unified Diff: chrome/browser/resources/net_internals/source_row.js

Issue 7531028: net-internals: Fix regression that breaks things when a filter is active. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: oops Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/source_row.js
===================================================================
--- chrome/browser/resources/net_internals/source_row.js (revision 94668)
+++ chrome/browser/resources/net_internals/source_row.js (working copy)
@@ -183,7 +183,7 @@
return true;
var filterText = filter.text;
- var entryText = this.sourceEntry_.PrintEntriesAsText().toLowerCase();
+ var entryText = this.sourceEntry_.printAsText().toLowerCase();
return entryText.indexOf(filterText) != -1;
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698