| Index: net/http/http_network_transaction_unittest.cc
|
| diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc
|
| index 452ba6b41ff7b10bf5944ed4f7bcc2f192bbde5c..14bda39448d3534d25d6c6b5e742fb08a47b8f07 100644
|
| --- a/net/http/http_network_transaction_unittest.cc
|
| +++ b/net/http/http_network_transaction_unittest.cc
|
| @@ -6,6 +6,8 @@
|
|
|
| #include <math.h> // ceil
|
| #include <stdarg.h>
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -13363,6 +13365,11 @@ class FakeStream : public HttpStream,
|
| return 0;
|
| }
|
|
|
| + int64_t GetTotalSentBytes() const override {
|
| + ADD_FAILURE();
|
| + return 0;
|
| + }
|
| +
|
| bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override {
|
| ADD_FAILURE();
|
| return false;
|
| @@ -13574,6 +13581,11 @@ class FakeWebSocketBasicHandshakeStream : public WebSocketHandshakeStreamBase {
|
| return 0;
|
| }
|
|
|
| + int64_t GetTotalSentBytes() const override {
|
| + NOTREACHED();
|
| + return 0;
|
| + }
|
| +
|
| bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override {
|
| NOTREACHED();
|
| return false;
|
|
|