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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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; | 95 BLINK_PLATFORM_EXPORT double responseTime() const; |
96 BLINK_PLATFORM_EXPORT void setResponseTime(double); | 96 BLINK_PLATFORM_EXPORT void setResponseTime(double); |
97 | 97 |
98 BLINK_PLATFORM_EXPORT long long originalResponseTime() const; | |
99 BLINK_PLATFORM_EXPORT void setOriginalResponseTime(long long); | |
Yang
2015/02/18 09:46:15
We use long long and int64 interchangeably when ex
| |
100 | |
98 BLINK_PLATFORM_EXPORT WebString mimeType() const; | 101 BLINK_PLATFORM_EXPORT WebString mimeType() const; |
99 BLINK_PLATFORM_EXPORT void setMIMEType(const WebString&); | 102 BLINK_PLATFORM_EXPORT void setMIMEType(const WebString&); |
100 | 103 |
101 BLINK_PLATFORM_EXPORT long long expectedContentLength() const; | 104 BLINK_PLATFORM_EXPORT long long expectedContentLength() const; |
102 BLINK_PLATFORM_EXPORT void setExpectedContentLength(long long); | 105 BLINK_PLATFORM_EXPORT void setExpectedContentLength(long long); |
103 | 106 |
104 BLINK_PLATFORM_EXPORT WebString textEncodingName() const; | 107 BLINK_PLATFORM_EXPORT WebString textEncodingName() const; |
105 BLINK_PLATFORM_EXPORT void setTextEncodingName(const WebString&); | 108 BLINK_PLATFORM_EXPORT void setTextEncodingName(const WebString&); |
106 | 109 |
107 BLINK_PLATFORM_EXPORT WebString suggestedFileName() const; | 110 BLINK_PLATFORM_EXPORT WebString suggestedFileName() const; |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
212 protected: | 215 protected: |
213 BLINK_PLATFORM_EXPORT void assign(WebURLResponsePrivate*); | 216 BLINK_PLATFORM_EXPORT void assign(WebURLResponsePrivate*); |
214 | 217 |
215 private: | 218 private: |
216 WebURLResponsePrivate* m_private; | 219 WebURLResponsePrivate* m_private; |
217 }; | 220 }; |
218 | 221 |
219 } // namespace blink | 222 } // namespace blink |
220 | 223 |
221 #endif | 224 #endif |
OLD | NEW |