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

Side by Side Diff: Source/WebCore/platform/network/chromium/ResourceHandle.cpp

Issue 14188008: Move Data uri handling into WebCore Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/WebCore/platform/network/ResourceHandle.h ('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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « Source/WebCore/platform/network/ResourceHandle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698