| 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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 { | 274 { |
| 275 d->didChangePriority(static_cast<WebURLRequest::Priority>(newPriority)); | 275 d->didChangePriority(static_cast<WebURLRequest::Priority>(newPriority)); |
| 276 } | 276 } |
| 277 | 277 |
| 278 // static | 278 // static |
| 279 void ResourceHandle::cacheMetadata(const ResourceResponse& response, const Vecto
r<char>& data) | 279 void ResourceHandle::cacheMetadata(const ResourceResponse& response, const Vecto
r<char>& data) |
| 280 { | 280 { |
| 281 WebKit::Platform::current()->cacheMetadata(response.url(), response.response
Time(), data.data(), data.size()); | 281 WebKit::Platform::current()->cacheMetadata(response.url(), response.response
Time(), data.data(), data.size()); |
| 282 } | 282 } |
| 283 | 283 |
| 284 bool ResourceHandle::parseDataUrl(const KURL& url, String& mimetypeOut, String&
charsetOut, Vector<char>& dataOut) |
| 285 { |
| 286 WebData mimetype, charset; |
| 287 WebVector<char> data; |
| 288 if (WebKit::Platform::current()->parseDataUrl(url, mimetype, charset, data))
{ |
| 289 mimetypeOut = String(mimetype.data(), mimetype.size()); |
| 290 charsetOut = String(charset.data(), charset.size()); |
| 291 // FIXME |
| 292 dataOut = Vector<char>(data.size()); |
| 293 for (size_t i=0; i<data.size(); i++) |
| 294 dataOut[i] = data[i]; |
| 295 return true; |
| 296 } |
| 297 return false; |
| 298 } |
| 299 |
| 284 } // namespace WebCore | 300 } // namespace WebCore |
| OLD | NEW |