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

Side by Side Diff: content/browser/loader/detachable_resource_handler.h

Issue 1301103002: moved upload progress logic from ResourceLoader to AsyncResourceHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: single quotes, nits, and return success on success 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_LOADER_DETACHABLE_RESOURCE_HANDLER_H_ 5 #ifndef CONTENT_BROWSER_LOADER_DETACHABLE_RESOURCE_HANDLER_H_
6 #define CONTENT_BROWSER_LOADER_DETACHABLE_RESOURCE_HANDLER_H_ 6 #define CONTENT_BROWSER_LOADER_DETACHABLE_RESOURCE_HANDLER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 30 matching lines...) Expand all
41 41
42 bool is_detached() const { return next_handler_ == NULL; } 42 bool is_detached() const { return next_handler_ == NULL; }
43 void Detach(); 43 void Detach();
44 44
45 void set_cancel_delay(base::TimeDelta cancel_delay) { 45 void set_cancel_delay(base::TimeDelta cancel_delay) {
46 cancel_delay_ = cancel_delay; 46 cancel_delay_ = cancel_delay;
47 } 47 }
48 48
49 // ResourceHandler implementation: 49 // ResourceHandler implementation:
50 void SetController(ResourceController* controller) override; 50 void SetController(ResourceController* controller) override;
51 bool OnUploadProgress(uint64 position, uint64 size) override;
52 bool OnRequestRedirected(const net::RedirectInfo& redirect_info, 51 bool OnRequestRedirected(const net::RedirectInfo& redirect_info,
53 ResourceResponse* response, 52 ResourceResponse* response,
54 bool* defer) override; 53 bool* defer) override;
55 bool OnResponseStarted(ResourceResponse* response, bool* defer) override; 54 bool OnResponseStarted(ResourceResponse* response, bool* defer) override;
56 bool OnWillStart(const GURL& url, bool* defer) override; 55 bool OnWillStart(const GURL& url, bool* defer) override;
57 bool OnBeforeNetworkStart(const GURL& url, bool* defer) override; 56 bool OnBeforeNetworkStart(const GURL& url, bool* defer) override;
58 bool OnWillRead(scoped_refptr<net::IOBuffer>* buf, 57 bool OnWillRead(scoped_refptr<net::IOBuffer>* buf,
59 int* buf_size, 58 int* buf_size,
60 int min_size) override; 59 int min_size) override;
61 bool OnReadCompleted(int bytes_read, bool* defer) override; 60 bool OnReadCompleted(int bytes_read, bool* defer) override;
(...skipping 17 matching lines...) Expand all
79 78
80 bool is_deferred_; 79 bool is_deferred_;
81 bool is_finished_; 80 bool is_finished_;
82 81
83 DISALLOW_COPY_AND_ASSIGN(DetachableResourceHandler); 82 DISALLOW_COPY_AND_ASSIGN(DetachableResourceHandler);
84 }; 83 };
85 84
86 } // namespace content 85 } // namespace content
87 86
88 #endif // CONTENT_BROWSER_LOADER_DETACHABLE_RESOURCE_HANDLER_H_ 87 #endif // CONTENT_BROWSER_LOADER_DETACHABLE_RESOURCE_HANDLER_H_
OLDNEW
« no previous file with comments | « content/browser/loader/certificate_resource_handler.cc ('k') | content/browser/loader/detachable_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698