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

Side by Side Diff: net/url_request/url_request_http_job.h

Issue 2035293002: Remove URLRequest::GetResponseCookies and URLRequestJob::GetResponseCookies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments rogerta Created 4 years, 6 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/url_request/url_request.cc ('k') | net/url_request/url_request_http_job.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 #ifndef NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_
6 #define NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ 6 #define NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 // Overridden from URLRequestJob: 117 // Overridden from URLRequestJob:
118 void SetUpload(UploadDataStream* upload) override; 118 void SetUpload(UploadDataStream* upload) override;
119 void SetExtraRequestHeaders(const HttpRequestHeaders& headers) override; 119 void SetExtraRequestHeaders(const HttpRequestHeaders& headers) override;
120 LoadState GetLoadState() const override; 120 LoadState GetLoadState() const override;
121 UploadProgress GetUploadProgress() const override; 121 UploadProgress GetUploadProgress() const override;
122 bool GetMimeType(std::string* mime_type) const override; 122 bool GetMimeType(std::string* mime_type) const override;
123 bool GetCharset(std::string* charset) override; 123 bool GetCharset(std::string* charset) override;
124 void GetResponseInfo(HttpResponseInfo* info) override; 124 void GetResponseInfo(HttpResponseInfo* info) override;
125 void GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override; 125 void GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override;
126 bool GetRemoteEndpoint(IPEndPoint* endpoint) const override; 126 bool GetRemoteEndpoint(IPEndPoint* endpoint) const override;
127 bool GetResponseCookies(std::vector<std::string>* cookies) override;
128 int GetResponseCode() const override; 127 int GetResponseCode() const override;
129 void PopulateNetErrorDetails(NetErrorDetails* details) const override; 128 void PopulateNetErrorDetails(NetErrorDetails* details) const override;
130 std::unique_ptr<Filter> SetupFilter() const override; 129 std::unique_ptr<Filter> SetupFilter() const override;
131 bool CopyFragmentOnRedirect(const GURL& location) const override; 130 bool CopyFragmentOnRedirect(const GURL& location) const override;
132 bool IsSafeRedirect(const GURL& location) override; 131 bool IsSafeRedirect(const GURL& location) override;
133 bool NeedsAuth() override; 132 bool NeedsAuth() override;
134 void GetAuthChallengeInfo(scoped_refptr<AuthChallengeInfo>*) override; 133 void GetAuthChallengeInfo(scoped_refptr<AuthChallengeInfo>*) override;
135 void SetAuth(const AuthCredentials& credentials) override; 134 void SetAuth(const AuthCredentials& credentials) override;
136 void CancelAuth() override; 135 void CancelAuth() override;
137 void ContinueWithCertificate(X509Certificate* client_cert, 136 void ContinueWithCertificate(X509Certificate* client_cert,
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 int64_t total_sent_bytes_from_previous_transactions_; 280 int64_t total_sent_bytes_from_previous_transactions_;
282 281
283 base::WeakPtrFactory<URLRequestHttpJob> weak_factory_; 282 base::WeakPtrFactory<URLRequestHttpJob> weak_factory_;
284 283
285 DISALLOW_COPY_AND_ASSIGN(URLRequestHttpJob); 284 DISALLOW_COPY_AND_ASSIGN(URLRequestHttpJob);
286 }; 285 };
287 286
288 } // namespace net 287 } // namespace net
289 288
290 #endif // NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ 289 #endif // NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_
OLDNEW
« no previous file with comments | « net/url_request/url_request.cc ('k') | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698