summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/net_internals/source_filter_parser.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/net_internals/source_filter_parser.js')
-rw-r--r--chromium/chrome/browser/resources/net_internals/source_filter_parser.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/chromium/chrome/browser/resources/net_internals/source_filter_parser.js b/chromium/chrome/browser/resources/net_internals/source_filter_parser.js
index d11ee7a4591..aa5b27b3c11 100644
--- a/chromium/chrome/browser/resources/net_internals/source_filter_parser.js
+++ b/chromium/chrome/browser/resources/net_internals/source_filter_parser.js
@@ -204,11 +204,8 @@ var SourceFilterParser = (function() {
if (description.indexOf(text) != -1 || type.indexOf(text) != -1) {
match = true;
} else {
- if (!tablePrinter) {
- tablePrinter = createLogEntryTablePrinter(
- sourceEntry.getLogEntries(),
- SourceTracker.getInstance().getPrivacyStripping());
- }
+ if (!tablePrinter)
+ tablePrinter = sourceEntry.createTablePrinter();
match = tablePrinter.search(text);
}
if (negated)