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

Side by Side Diff: net/http/http_basic_stream.h

Issue 1316863007: Change GetTotalReceivedBytes() from int64 to int64_t. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased on master Created 5 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 unified diff | Download patch
« no previous file with comments | « net/http/failing_http_transaction_factory.cc ('k') | net/http/http_basic_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // HttpBasicStream is a simple implementation of HttpStream. It assumes it is 5 // HttpBasicStream is a simple implementation of HttpStream. It assumes it is
6 // not sharing a sharing with any other HttpStreams, therefore it just reads and 6 // not sharing a sharing with any other HttpStreams, therefore it just reads and
7 // writes directly to the Http Stream. 7 // writes directly to the Http Stream.
8 8
9 #ifndef NET_HTTP_HTTP_BASIC_STREAM_H_ 9 #ifndef NET_HTTP_HTTP_BASIC_STREAM_H_
10 #define NET_HTTP_HTTP_BASIC_STREAM_H_ 10 #define NET_HTTP_HTTP_BASIC_STREAM_H_
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 HttpStream* RenewStreamForAuth() override; 57 HttpStream* RenewStreamForAuth() override;
58 58
59 bool IsResponseBodyComplete() const override; 59 bool IsResponseBodyComplete() const override;
60 60
61 bool IsConnectionReused() const override; 61 bool IsConnectionReused() const override;
62 62
63 void SetConnectionReused() override; 63 void SetConnectionReused() override;
64 64
65 bool CanReuseConnection() const override; 65 bool CanReuseConnection() const override;
66 66
67 int64 GetTotalReceivedBytes() const override; 67 int64_t GetTotalReceivedBytes() const override;
68 68
69 int64_t GetTotalSentBytes() const override; 69 int64_t GetTotalSentBytes() const override;
70 70
71 bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override; 71 bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override;
72 72
73 void GetSSLInfo(SSLInfo* ssl_info) override; 73 void GetSSLInfo(SSLInfo* ssl_info) override;
74 74
75 void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override; 75 void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override;
76 76
77 void Drain(HttpNetworkSession* session) override; 77 void Drain(HttpNetworkSession* session) override;
78 78
79 void SetPriority(RequestPriority priority) override; 79 void SetPriority(RequestPriority priority) override;
80 80
81 private: 81 private:
82 HttpStreamParser* parser() const { return state_.parser(); } 82 HttpStreamParser* parser() const { return state_.parser(); }
83 83
84 HttpBasicState state_; 84 HttpBasicState state_;
85 85
86 DISALLOW_COPY_AND_ASSIGN(HttpBasicStream); 86 DISALLOW_COPY_AND_ASSIGN(HttpBasicStream);
87 }; 87 };
88 88
89 } // namespace net 89 } // namespace net
90 90
91 #endif // NET_HTTP_HTTP_BASIC_STREAM_H_ 91 #endif // NET_HTTP_HTTP_BASIC_STREAM_H_
OLDNEW
« no previous file with comments | « net/http/failing_http_transaction_factory.cc ('k') | net/http/http_basic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698