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

Unified Diff: content/child/url_loader_client_impl.h

Issue 2658583002: Revert of Use associated interface on DownloadedTempFile (Closed)
Patch Set: Rebased. Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: content/child/url_loader_client_impl.h
diff --git a/content/child/url_loader_client_impl.h b/content/child/url_loader_client_impl.h
index 8b868e577dc61266d45ff36f49086583624508d0..881ead8a96867a777e28138212b7b2afb628b15d 100644
--- a/content/child/url_loader_client_impl.h
+++ b/content/child/url_loader_client_impl.h
@@ -55,9 +55,8 @@ class CONTENT_EXPORT URLLoaderClientImpl final : public mojom::URLLoaderClient {
void FlushDeferredMessages();
// mojom::URLLoaderClient implementation
- void OnReceiveResponse(
- const ResourceResponseHead& response_head,
- mojom::DownloadedTempFileAssociatedPtrInfo downloaded_file) override;
+ void OnReceiveResponse(const ResourceResponseHead& response_head,
+ mojom::DownloadedTempFilePtr downloaded_file) override;
void OnReceiveRedirect(const net::RedirectInfo& redirect_info,
const ResourceResponseHead& response_head) override;
void OnDataDownloaded(int64_t data_len, int64_t encoded_data_len) override;
@@ -75,7 +74,7 @@ class CONTENT_EXPORT URLLoaderClientImpl final : public mojom::URLLoaderClient {
mojo::AssociatedBinding<mojom::URLLoaderClient> binding_;
scoped_refptr<URLResponseBodyConsumer> body_consumer_;
- mojom::DownloadedTempFileAssociatedPtr downloaded_file_;
+ mojom::DownloadedTempFilePtr downloaded_file_;
std::vector<IPC::Message> deferred_messages_;
const int request_id_;
bool has_received_response_ = false;
« no previous file with comments | « content/browser/service_worker/service_worker_fetch_dispatcher.cc ('k') | content/child/url_loader_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698