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

Side by Side Diff: third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp

Issue 2712833002: DevTools: Show decoded body length for network requests on timeline. (Closed)
Patch Set: rebaseline Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 WebURLRequest::FrameType, 73 WebURLRequest::FrameType,
74 WebURLRequest::RequestContext, 74 WebURLRequest::RequestContext,
75 Resource*) {} 75 Resource*) {}
76 76
77 void FetchContext::dispatchDidReceiveData(unsigned long, const char*, int) {} 77 void FetchContext::dispatchDidReceiveData(unsigned long, const char*, int) {}
78 78
79 void FetchContext::dispatchDidReceiveEncodedData(unsigned long, int) {} 79 void FetchContext::dispatchDidReceiveEncodedData(unsigned long, int) {}
80 80
81 void FetchContext::dispatchDidDownloadData(unsigned long, int, int) {} 81 void FetchContext::dispatchDidDownloadData(unsigned long, int, int) {}
82 82
83 void FetchContext::dispatchDidFinishLoading(unsigned long, double, int64_t) {} 83 void FetchContext::dispatchDidFinishLoading(unsigned long,
84 double,
85 int64_t,
86 int64_t) {}
84 87
85 void FetchContext::dispatchDidFail(unsigned long, 88 void FetchContext::dispatchDidFail(unsigned long,
86 const ResourceError&, 89 const ResourceError&,
87 int64_t, 90 int64_t,
88 bool) {} 91 bool) {}
89 92
90 void FetchContext::willStartLoadingResource( 93 void FetchContext::willStartLoadingResource(
91 unsigned long, 94 unsigned long,
92 ResourceRequest&, 95 ResourceRequest&,
93 Resource::Type, 96 Resource::Type,
(...skipping 10 matching lines...) Expand all
104 FetchContext::LogMessageType) const {} 107 FetchContext::LogMessageType) const {}
105 108
106 void FetchContext::populateResourceRequest(Resource::Type, 109 void FetchContext::populateResourceRequest(Resource::Type,
107 const ClientHintsPreferences&, 110 const ClientHintsPreferences&,
108 const FetchRequest::ResourceWidth&, 111 const FetchRequest::ResourceWidth&,
109 ResourceRequest&) {} 112 ResourceRequest&) {}
110 113
111 void FetchContext::setFirstPartyCookieAndRequestorOrigin(ResourceRequest&) {} 114 void FetchContext::setFirstPartyCookieAndRequestorOrigin(ResourceRequest&) {}
112 115
113 } // namespace blink 116 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698