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

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

Issue 5741001: Even more virtual method deinlining. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase (windows) Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/socket/ssl_client_socket_pool.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 virtual void Kill(); 42 virtual void Kill();
43 virtual LoadState GetLoadState() const; 43 virtual LoadState GetLoadState() const;
44 virtual uint64 GetUploadProgress() const; 44 virtual uint64 GetUploadProgress() const;
45 virtual bool GetMimeType(std::string* mime_type) const; 45 virtual bool GetMimeType(std::string* mime_type) const;
46 virtual bool GetCharset(std::string* charset); 46 virtual bool GetCharset(std::string* charset);
47 virtual void GetResponseInfo(HttpResponseInfo* info); 47 virtual void GetResponseInfo(HttpResponseInfo* info);
48 virtual bool GetResponseCookies(std::vector<std::string>* cookies); 48 virtual bool GetResponseCookies(std::vector<std::string>* cookies);
49 virtual int GetResponseCode() const; 49 virtual int GetResponseCode() const;
50 virtual bool GetContentEncodings( 50 virtual bool GetContentEncodings(
51 std::vector<Filter::FilterType>* encoding_type); 51 std::vector<Filter::FilterType>* encoding_type);
52 virtual bool IsCachedContent() const { return is_cached_content_; } 52 virtual bool IsCachedContent() const;
53 virtual bool IsSdchResponse() const; 53 virtual bool IsSdchResponse() const;
54 virtual bool IsSafeRedirect(const GURL& location); 54 virtual bool IsSafeRedirect(const GURL& location);
55 virtual bool NeedsAuth(); 55 virtual bool NeedsAuth();
56 virtual void GetAuthChallengeInfo(scoped_refptr<AuthChallengeInfo>*); 56 virtual void GetAuthChallengeInfo(scoped_refptr<AuthChallengeInfo>*);
57 virtual void SetAuth(const string16& username, 57 virtual void SetAuth(const string16& username,
58 const string16& password); 58 const string16& password);
59 virtual void CancelAuth(); 59 virtual void CancelAuth();
60 virtual void ContinueWithCertificate(X509Certificate* client_cert); 60 virtual void ContinueWithCertificate(X509Certificate* client_cert);
61 virtual void ContinueDespiteLastError(); 61 virtual void ContinueDespiteLastError();
62 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read); 62 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 virtual ~URLRequestHttpJob(); 138 virtual ~URLRequestHttpJob();
139 139
140 ScopedRunnableMethodFactory<URLRequestHttpJob> method_factory_; 140 ScopedRunnableMethodFactory<URLRequestHttpJob> method_factory_;
141 141
142 DISALLOW_COPY_AND_ASSIGN(URLRequestHttpJob); 142 DISALLOW_COPY_AND_ASSIGN(URLRequestHttpJob);
143 }; 143 };
144 144
145 } // namespace net 145 } // namespace net
146 146
147 #endif // NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_ 147 #endif // NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_
OLDNEW
« no previous file with comments | « net/socket/ssl_client_socket_pool.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