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

Unified Diff: Source/core/dom/DOMURL.h

Issue 157363003: Implement Blob.close(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 10 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 | « LayoutTests/http/tests/xmlhttprequest/resources/multipart-post-echo.php ('k') | Source/core/dom/DOMURL.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMURL.h
diff --git a/Source/core/dom/DOMURL.h b/Source/core/dom/DOMURL.h
index 7e87881150a2243c3ce54f8aea13f58dd1f80412..943013b3ceec0292f4745ce92168caac8f8967c0 100644
--- a/Source/core/dom/DOMURL.h
+++ b/Source/core/dom/DOMURL.h
@@ -63,7 +63,8 @@ public:
static String createObjectURL(ExecutionContext*, Blob*);
static void revokeObjectURL(ExecutionContext*, const String&);
- static String createPublicURL(ExecutionContext*, URLRegistrable*);
+ static String createPublicURL(ExecutionContext*, URLRegistrable*, const String& uuid = String());
+ static void revokeObjectUUID(ExecutionContext*, const String&);
virtual KURL url() const OVERRIDE { return m_url; }
virtual void setURL(const KURL& url) OVERRIDE { m_url = url; }
« no previous file with comments | « LayoutTests/http/tests/xmlhttprequest/resources/multipart-post-echo.php ('k') | Source/core/dom/DOMURL.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698