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

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

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment Created 6 years, 2 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
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_FILE_JOB_H_ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_
6 #define NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ 6 #define NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 18 matching lines...) Expand all
29 29
30 // A request job that handles reading file URLs 30 // A request job that handles reading file URLs
31 class NET_EXPORT URLRequestFileJob : public URLRequestJob { 31 class NET_EXPORT URLRequestFileJob : public URLRequestJob {
32 public: 32 public:
33 URLRequestFileJob(URLRequest* request, 33 URLRequestFileJob(URLRequest* request,
34 NetworkDelegate* network_delegate, 34 NetworkDelegate* network_delegate,
35 const base::FilePath& file_path, 35 const base::FilePath& file_path,
36 const scoped_refptr<base::TaskRunner>& file_task_runner); 36 const scoped_refptr<base::TaskRunner>& file_task_runner);
37 37
38 // URLRequestJob: 38 // URLRequestJob:
39 virtual void Start() OVERRIDE; 39 virtual void Start() override;
40 virtual void Kill() OVERRIDE; 40 virtual void Kill() override;
41 virtual bool ReadRawData(IOBuffer* buf, 41 virtual bool ReadRawData(IOBuffer* buf,
42 int buf_size, 42 int buf_size,
43 int* bytes_read) OVERRIDE; 43 int* bytes_read) override;
44 virtual bool IsRedirectResponse(GURL* location, 44 virtual bool IsRedirectResponse(GURL* location,
45 int* http_status_code) OVERRIDE; 45 int* http_status_code) override;
46 virtual Filter* SetupFilter() const OVERRIDE; 46 virtual Filter* SetupFilter() const override;
47 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; 47 virtual bool GetMimeType(std::string* mime_type) const override;
48 virtual void SetExtraRequestHeaders( 48 virtual void SetExtraRequestHeaders(
49 const HttpRequestHeaders& headers) OVERRIDE; 49 const HttpRequestHeaders& headers) override;
50 50
51 // An interface for subclasses who wish to monitor read operations. 51 // An interface for subclasses who wish to monitor read operations.
52 virtual void OnSeekComplete(int64 result); 52 virtual void OnSeekComplete(int64 result);
53 virtual void OnReadComplete(net::IOBuffer* buf, int result); 53 virtual void OnReadComplete(net::IOBuffer* buf, int result);
54 54
55 protected: 55 protected:
56 virtual ~URLRequestFileJob(); 56 virtual ~URLRequestFileJob();
57 57
58 int64 remaining_bytes() const { return remaining_bytes_; } 58 int64 remaining_bytes() const { return remaining_bytes_; }
59 59
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 int64 remaining_bytes_; 105 int64 remaining_bytes_;
106 106
107 base::WeakPtrFactory<URLRequestFileJob> weak_ptr_factory_; 107 base::WeakPtrFactory<URLRequestFileJob> weak_ptr_factory_;
108 108
109 DISALLOW_COPY_AND_ASSIGN(URLRequestFileJob); 109 DISALLOW_COPY_AND_ASSIGN(URLRequestFileJob);
110 }; 110 };
111 111
112 } // namespace net 112 } // namespace net
113 113
114 #endif // NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_ 114 #endif // NET_URL_REQUEST_URL_REQUEST_FILE_JOB_H_
OLDNEW
« no previous file with comments | « net/url_request/url_request_file_dir_job.h ('k') | net/url_request/url_request_file_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698