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

Side by Side Diff: Source/core/fetch/ResourceLoader.h

Issue 156623005: Add transfer size paramater to didFinishLoading [3/3] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed comments Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/fetch/ResourceFetcher.cpp ('k') | Source/core/fetch/ResourceLoader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2006, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2011 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 void releaseResources(); 65 void releaseResources();
66 66
67 void didChangePriority(ResourceLoadPriority); 67 void didChangePriority(ResourceLoadPriority);
68 68
69 // WebURLLoaderClient 69 // WebURLLoaderClient
70 virtual void willSendRequest(blink::WebURLLoader*, blink::WebURLRequest&, co nst blink::WebURLResponse& redirectResponse) OVERRIDE; 70 virtual void willSendRequest(blink::WebURLLoader*, blink::WebURLRequest&, co nst blink::WebURLResponse& redirectResponse) OVERRIDE;
71 virtual void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE; 71 virtual void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
72 virtual void didReceiveResponse(blink::WebURLLoader*, const blink::WebURLRes ponse&) OVERRIDE; 72 virtual void didReceiveResponse(blink::WebURLLoader*, const blink::WebURLRes ponse&) OVERRIDE;
73 virtual void didReceiveData(blink::WebURLLoader*, const char*, int, int enco dedDataLength) OVERRIDE; 73 virtual void didReceiveData(blink::WebURLLoader*, const char*, int, int enco dedDataLength) OVERRIDE;
74 virtual void didReceiveCachedMetadata(blink::WebURLLoader*, const char* data , int length) OVERRIDE; 74 virtual void didReceiveCachedMetadata(blink::WebURLLoader*, const char* data , int length) OVERRIDE;
75 virtual void didFinishLoading(blink::WebURLLoader*, double finishTime) OVERR IDE; 75 virtual void didFinishLoading(blink::WebURLLoader*, double finishTime, int64 encodedDataLength) OVERRIDE;
76 virtual void didFail(blink::WebURLLoader*, const blink::WebURLError&) OVERRI DE; 76 virtual void didFail(blink::WebURLLoader*, const blink::WebURLError&) OVERRI DE;
77 virtual void didDownloadData(blink::WebURLLoader*, int, int) OVERRIDE; 77 virtual void didDownloadData(blink::WebURLLoader*, int, int) OVERRIDE;
78 78
79 const KURL& url() const { return m_request.url(); } 79 const KURL& url() const { return m_request.url(); }
80 bool shouldSniffContent() const { return m_options.sniffContent == SniffCont ent; } 80 bool shouldSniffContent() const { return m_options.sniffContent == SniffCont ent; }
81 bool isLoadedBy(ResourceLoaderHost*) const; 81 bool isLoadedBy(ResourceLoaderHost*) const;
82 82
83 bool reachedTerminalState() const { return m_state == Terminated; } 83 bool reachedTerminalState() const { return m_state == Terminated; }
84 const ResourceRequest& request() const { return m_request; } 84 const ResourceRequest& request() const { return m_request; }
85 85
86 private: 86 private:
87 ResourceLoader(ResourceLoaderHost*, Resource*, const ResourceLoaderOptions&) ; 87 ResourceLoader(ResourceLoaderHost*, Resource*, const ResourceLoaderOptions&) ;
88 88
89 void init(const ResourceRequest&); 89 void init(const ResourceRequest&);
90 void requestSynchronously(); 90 void requestSynchronously();
91 91
92 void didFinishLoadingOnePart(double finishTime); 92 void didFinishLoadingOnePart(double finishTime, int64_t encodedDataLength);
93 93
94 bool responseNeedsAccessControlCheck() const; 94 bool responseNeedsAccessControlCheck() const;
95 95
96 OwnPtr<blink::WebURLLoader> m_loader; 96 OwnPtr<blink::WebURLLoader> m_loader;
97 RefPtr<ResourceLoaderHost> m_host; 97 RefPtr<ResourceLoaderHost> m_host;
98 98
99 ResourceRequest m_request; 99 ResourceRequest m_request;
100 ResourceRequest m_originalRequest; // Before redirects. 100 ResourceRequest m_originalRequest; // Before redirects.
101 101
102 bool m_notifiedLoadComplete; 102 bool m_notifiedLoadComplete;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 // Used for sanity checking to make sure we don't experience illegal state 136 // Used for sanity checking to make sure we don't experience illegal state
137 // transitions. 137 // transitions.
138 ConnectionState m_connectionState; 138 ConnectionState m_connectionState;
139 139
140 OwnPtr<RequestCountTracker> m_requestCountTracker; 140 OwnPtr<RequestCountTracker> m_requestCountTracker;
141 }; 141 };
142 142
143 } 143 }
144 144
145 #endif 145 #endif
OLDNEW
« no previous file with comments | « Source/core/fetch/ResourceFetcher.cpp ('k') | Source/core/fetch/ResourceLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698