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

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 8 years, 2 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
Index: WebCore/fileapi/BlobURL.cpp
===================================================================
--- WebCore/fileapi/BlobURL.cpp (revision 132804)
+++ WebCore/fileapi/BlobURL.cpp (working copy)
@@ -47,10 +47,12 @@
return createBlobURL(securityOrigin->toString());
}
+/*
KURL BlobURL::createInternalURL()
{
return createBlobURL("blobinternal://");
}
+*/
String BlobURL::getOrigin(const KURL& url)
{
@@ -61,6 +63,7 @@
return url.string().substring(startIndex, endIndex - startIndex - 1);
}
+/*
String BlobURL::getIdentifier(const KURL& url)
{
ASSERT(url.protocolIs(kBlobProtocol));
@@ -68,6 +71,7 @@
unsigned startIndex = url.pathAfterLastSlash();
return url.string().substring(startIndex);
}
+*/
KURL BlobURL::createBlobURL(const String& originString)
{

Powered by Google App Engine
This is Rietveld 408576698