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

Side by Side Diff: content/browser/download/save_file_resource_handler.h

Issue 638503002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[download|… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_RESOURCE_HANDLER_H_ 5 #ifndef CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_RESOURCE_HANDLER_H_
6 #define CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_RESOURCE_HANDLER_H_ 6 #define CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_RESOURCE_HANDLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 11 matching lines...) Expand all
22 class SaveFileResourceHandler : public ResourceHandler { 22 class SaveFileResourceHandler : public ResourceHandler {
23 public: 23 public:
24 SaveFileResourceHandler(net::URLRequest* request, 24 SaveFileResourceHandler(net::URLRequest* request,
25 int render_process_host_id, 25 int render_process_host_id,
26 int render_view_id, 26 int render_view_id,
27 const GURL& url, 27 const GURL& url,
28 SaveFileManager* manager); 28 SaveFileManager* manager);
29 virtual ~SaveFileResourceHandler(); 29 virtual ~SaveFileResourceHandler();
30 30
31 // ResourceHandler Implementation: 31 // ResourceHandler Implementation:
32 virtual bool OnUploadProgress(uint64 position, uint64 size) OVERRIDE; 32 virtual bool OnUploadProgress(uint64 position, uint64 size) override;
33 33
34 // Saves the redirected URL to final_url_, we need to use the original 34 // Saves the redirected URL to final_url_, we need to use the original
35 // URL to match original request. 35 // URL to match original request.
36 virtual bool OnRequestRedirected(const net::RedirectInfo& redirect_info, 36 virtual bool OnRequestRedirected(const net::RedirectInfo& redirect_info,
37 ResourceResponse* response, 37 ResourceResponse* response,
38 bool* defer) OVERRIDE; 38 bool* defer) override;
39 39
40 // Sends the download creation information to the download thread. 40 // Sends the download creation information to the download thread.
41 virtual bool OnResponseStarted(ResourceResponse* response, 41 virtual bool OnResponseStarted(ResourceResponse* response,
42 bool* defer) OVERRIDE; 42 bool* defer) override;
43 43
44 // Pass-through implementation. 44 // Pass-through implementation.
45 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE; 45 virtual bool OnWillStart(const GURL& url, bool* defer) override;
46 46
47 // Pass-through implementation. 47 // Pass-through implementation.
48 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE; 48 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) override;
49 49
50 // Creates a new buffer, which will be handed to the download thread for file 50 // Creates a new buffer, which will be handed to the download thread for file
51 // writing and deletion. 51 // writing and deletion.
52 virtual bool OnWillRead(scoped_refptr<net::IOBuffer>* buf, 52 virtual bool OnWillRead(scoped_refptr<net::IOBuffer>* buf,
53 int* buf_size, 53 int* buf_size,
54 int min_size) OVERRIDE; 54 int min_size) override;
55 55
56 // Passes the buffer to the download file writer. 56 // Passes the buffer to the download file writer.
57 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE; 57 virtual bool OnReadCompleted(int bytes_read, bool* defer) override;
58 58
59 virtual void OnResponseCompleted(const net::URLRequestStatus& status, 59 virtual void OnResponseCompleted(const net::URLRequestStatus& status,
60 const std::string& security_info, 60 const std::string& security_info,
61 bool* defer) OVERRIDE; 61 bool* defer) override;
62 62
63 // N/A to this flavor of SaveFileResourceHandler. 63 // N/A to this flavor of SaveFileResourceHandler.
64 virtual void OnDataDownloaded(int bytes_downloaded) OVERRIDE; 64 virtual void OnDataDownloaded(int bytes_downloaded) override;
65 65
66 // If the content-length header is not present (or contains something other 66 // If the content-length header is not present (or contains something other
67 // than numbers), StringToInt64 returns 0, which indicates 'unknown size' and 67 // than numbers), StringToInt64 returns 0, which indicates 'unknown size' and
68 // is handled correctly by the SaveManager. 68 // is handled correctly by the SaveManager.
69 void set_content_length(const std::string& content_length); 69 void set_content_length(const std::string& content_length);
70 70
71 void set_content_disposition(const std::string& content_disposition) { 71 void set_content_disposition(const std::string& content_disposition) {
72 content_disposition_ = content_disposition; 72 content_disposition_ = content_disposition;
73 } 73 }
74 74
75 private: 75 private:
76 int save_id_; 76 int save_id_;
77 int render_process_id_; 77 int render_process_id_;
78 int render_view_id_; 78 int render_view_id_;
79 scoped_refptr<net::IOBuffer> read_buffer_; 79 scoped_refptr<net::IOBuffer> read_buffer_;
80 std::string content_disposition_; 80 std::string content_disposition_;
81 GURL url_; 81 GURL url_;
82 GURL final_url_; 82 GURL final_url_;
83 int64 content_length_; 83 int64 content_length_;
84 SaveFileManager* save_manager_; 84 SaveFileManager* save_manager_;
85 85
86 static const int kReadBufSize = 32768; // bytes 86 static const int kReadBufSize = 32768; // bytes
87 87
88 DISALLOW_COPY_AND_ASSIGN(SaveFileResourceHandler); 88 DISALLOW_COPY_AND_ASSIGN(SaveFileResourceHandler);
89 }; 89 };
90 90
91 } // namespace content 91 } // namespace content
92 92
93 #endif // CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_RESOURCE_HANDLER_H_ 93 #endif // CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_RESOURCE_HANDLER_H_
OLDNEW
« no previous file with comments | « content/browser/download/mhtml_generation_manager.cc ('k') | content/browser/download/save_package.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698