| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |