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

Side by Side Diff: third_party/WebKit/public/platform/WebURLResponse.h

Issue 2654663004: [Not for review] record detailed time breakdown of SW related requests.
Patch Set: add stream uma 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
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceResponse.cpp ('k') | no next file » | 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 BLINK_PLATFORM_EXPORT bool connectionReused() const; 157 BLINK_PLATFORM_EXPORT bool connectionReused() const;
158 BLINK_PLATFORM_EXPORT void setConnectionReused(bool); 158 BLINK_PLATFORM_EXPORT void setConnectionReused(bool);
159 159
160 BLINK_PLATFORM_EXPORT WebURLLoadTiming loadTiming(); 160 BLINK_PLATFORM_EXPORT WebURLLoadTiming loadTiming();
161 BLINK_PLATFORM_EXPORT void setLoadTiming(const WebURLLoadTiming&); 161 BLINK_PLATFORM_EXPORT void setLoadTiming(const WebURLLoadTiming&);
162 162
163 BLINK_PLATFORM_EXPORT WebHTTPLoadInfo httpLoadInfo(); 163 BLINK_PLATFORM_EXPORT WebHTTPLoadInfo httpLoadInfo();
164 BLINK_PLATFORM_EXPORT void setHTTPLoadInfo(const WebHTTPLoadInfo&); 164 BLINK_PLATFORM_EXPORT void setHTTPLoadInfo(const WebHTTPLoadInfo&);
165 165
166 BLINK_PLATFORM_EXPORT void setResponseTime(long long); 166 BLINK_PLATFORM_EXPORT void setResponseTime(long long);
167 BLINK_PLATFORM_EXPORT void setResponseStart(long long);
167 168
168 BLINK_PLATFORM_EXPORT WebString mimeType() const; 169 BLINK_PLATFORM_EXPORT WebString mimeType() const;
169 BLINK_PLATFORM_EXPORT void setMIMEType(const WebString&); 170 BLINK_PLATFORM_EXPORT void setMIMEType(const WebString&);
170 171
171 BLINK_PLATFORM_EXPORT long long expectedContentLength() const; 172 BLINK_PLATFORM_EXPORT long long expectedContentLength() const;
172 BLINK_PLATFORM_EXPORT void setExpectedContentLength(long long); 173 BLINK_PLATFORM_EXPORT void setExpectedContentLength(long long);
173 174
174 BLINK_PLATFORM_EXPORT WebString textEncodingName() const; 175 BLINK_PLATFORM_EXPORT WebString textEncodingName() const;
175 BLINK_PLATFORM_EXPORT void setTextEncodingName(const WebString&); 176 BLINK_PLATFORM_EXPORT void setTextEncodingName(const WebString&);
176 177
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 // instance it contains. 334 // instance it contains.
334 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; 335 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse;
335 336
336 // Should never be null. 337 // Should never be null.
337 ResourceResponse* m_resourceResponse; 338 ResourceResponse* m_resourceResponse;
338 }; 339 };
339 340
340 } // namespace blink 341 } // namespace blink
341 342
342 #endif 343 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceResponse.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698