OLD | NEW |
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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 BLINK_PLATFORM_EXPORT bool connectionReused() const; | 86 BLINK_PLATFORM_EXPORT bool connectionReused() const; |
87 BLINK_PLATFORM_EXPORT void setConnectionReused(bool); | 87 BLINK_PLATFORM_EXPORT void setConnectionReused(bool); |
88 | 88 |
89 BLINK_PLATFORM_EXPORT WebURLLoadTiming loadTiming(); | 89 BLINK_PLATFORM_EXPORT WebURLLoadTiming loadTiming(); |
90 BLINK_PLATFORM_EXPORT void setLoadTiming(const WebURLLoadTiming&); | 90 BLINK_PLATFORM_EXPORT void setLoadTiming(const WebURLLoadTiming&); |
91 | 91 |
92 BLINK_PLATFORM_EXPORT WebHTTPLoadInfo httpLoadInfo(); | 92 BLINK_PLATFORM_EXPORT WebHTTPLoadInfo httpLoadInfo(); |
93 BLINK_PLATFORM_EXPORT void setHTTPLoadInfo(const WebHTTPLoadInfo&); | 93 BLINK_PLATFORM_EXPORT void setHTTPLoadInfo(const WebHTTPLoadInfo&); |
94 | 94 |
95 BLINK_PLATFORM_EXPORT double responseTime() const; | |
96 BLINK_PLATFORM_EXPORT void setResponseTime(double); | 95 BLINK_PLATFORM_EXPORT void setResponseTime(double); |
| 96 BLINK_PLATFORM_EXPORT void setResponseTime(long long); |
97 | 97 |
98 BLINK_PLATFORM_EXPORT WebString mimeType() const; | 98 BLINK_PLATFORM_EXPORT WebString mimeType() const; |
99 BLINK_PLATFORM_EXPORT void setMIMEType(const WebString&); | 99 BLINK_PLATFORM_EXPORT void setMIMEType(const WebString&); |
100 | 100 |
101 BLINK_PLATFORM_EXPORT long long expectedContentLength() const; | 101 BLINK_PLATFORM_EXPORT long long expectedContentLength() const; |
102 BLINK_PLATFORM_EXPORT void setExpectedContentLength(long long); | 102 BLINK_PLATFORM_EXPORT void setExpectedContentLength(long long); |
103 | 103 |
104 BLINK_PLATFORM_EXPORT WebString textEncodingName() const; | 104 BLINK_PLATFORM_EXPORT WebString textEncodingName() const; |
105 BLINK_PLATFORM_EXPORT void setTextEncodingName(const WebString&); | 105 BLINK_PLATFORM_EXPORT void setTextEncodingName(const WebString&); |
106 | 106 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 protected: | 212 protected: |
213 BLINK_PLATFORM_EXPORT void assign(WebURLResponsePrivate*); | 213 BLINK_PLATFORM_EXPORT void assign(WebURLResponsePrivate*); |
214 | 214 |
215 private: | 215 private: |
216 WebURLResponsePrivate* m_private; | 216 WebURLResponsePrivate* m_private; |
217 }; | 217 }; |
218 | 218 |
219 } // namespace blink | 219 } // namespace blink |
220 | 220 |
221 #endif | 221 #endif |
OLD | NEW |