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

Unified Diff: WebCore/fileapi/BlobURL.cpp

Issue 11192017: ********** WebCore blob hacking (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/Source/
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « WebCore/fileapi/BlobURL.h ('k') | WebCore/fileapi/File.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/fileapi/BlobURL.cpp
===================================================================
--- WebCore/fileapi/BlobURL.cpp (revision 140218)
+++ WebCore/fileapi/BlobURL.cpp (working copy)
@@ -47,11 +47,6 @@
return createBlobURL(securityOrigin->toString());
}
-KURL BlobURL::createInternalURL()
-{
- return createBlobURL("blobinternal://");
-}
-
String BlobURL::getOrigin(const KURL& url)
{
ASSERT(url.protocolIs(kBlobProtocol));
@@ -61,14 +56,6 @@
return url.string().substring(startIndex, endIndex - startIndex - 1);
}
-String BlobURL::getIdentifier(const KURL& url)
-{
- ASSERT(url.protocolIs(kBlobProtocol));
-
- unsigned startIndex = url.pathAfterLastSlash();
- return url.string().substring(startIndex);
-}
-
KURL BlobURL::createBlobURL(const String& originString)
{
ASSERT(!originString.isEmpty());
« no previous file with comments | « WebCore/fileapi/BlobURL.h ('k') | WebCore/fileapi/File.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698