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

Unified Diff: content/test/mock_google_streaming_server.cc

Issue 2303653002: Precache per-resource cap should be applied on network bytes used (Closed)
Patch Set: Addressed mmenke comments Created 4 years, 3 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
Index: content/test/mock_google_streaming_server.cc
diff --git a/content/test/mock_google_streaming_server.cc b/content/test/mock_google_streaming_server.cc
index b79ae0dd663ad98848cec47001857c23bee93025..04a3c9c3dafdbe18990a38b7ff603993d51f98fc 100644
--- a/content/test/mock_google_streaming_server.cc
+++ b/content/test/mock_google_streaming_server.cc
@@ -137,7 +137,7 @@ void MockGoogleStreamingServer::SimulateServerResponse(
net::URLRequestStatus::FromError(success ? net::OK : net::ERR_FAILED));
fetcher->set_response_code(success ? 200 : 500);
fetcher->SetResponseString(http_response);
- fetcher->delegate()->OnURLFetchDownloadProgress(fetcher, 0, 0);
+ fetcher->delegate()->OnURLFetchDownloadProgress(fetcher, 0, 0, 0);
}
// Can return NULL if the SpeechRecognizer has not requested the connection yet.

Powered by Google App Engine
This is Rietveld 408576698