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

Unified Diff: chrome/browser/subresource_filter/subresource_filter_browsertest.cc

Issue 2604173002: Prevent racey favicon loads in subresource filter browsertests. (Closed)
Patch Set: Wording Created 4 years 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 | chrome/test/data/subresource_filter/frame_set.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/subresource_filter/subresource_filter_browsertest.cc
diff --git a/chrome/browser/subresource_filter/subresource_filter_browsertest.cc b/chrome/browser/subresource_filter/subresource_filter_browsertest.cc
index 23a82fadd9f62fff6e02110ba3742545b72b63d0..64555c9308447a51388eea7aa14ea971b5005d36 100644
--- a/chrome/browser/subresource_filter/subresource_filter_browsertest.cc
+++ b/chrome/browser/subresource_filter/subresource_filter_browsertest.cc
@@ -360,8 +360,8 @@ void ExpectHistogramsAreRecordedForTestFrameSet(
tester.ExpectTotalCount(kEvaluationTotalCPUDurationForDocument,
time_recorded ? 6 : 0);
- tester.ExpectTotalCount(kEvaluationWallDuration, time_recorded ? 7 : 0);
- tester.ExpectTotalCount(kEvaluationCPUDuration, time_recorded ? 7 : 0);
+ tester.ExpectTotalCount(kEvaluationWallDuration, time_recorded ? 6 : 0);
+ tester.ExpectTotalCount(kEvaluationCPUDuration, time_recorded ? 6 : 0);
// Activation timing histograms are always recorded.
tester.ExpectTotalCount(kActivationWallDuration, 6);
« no previous file with comments | « no previous file | chrome/test/data/subresource_filter/frame_set.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698