summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/html/DOMURL.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/DOMURL.h')
-rw-r--r--Source/WebCore/html/DOMURL.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/WebCore/html/DOMURL.h b/Source/WebCore/html/DOMURL.h
index 57f3000..dff4dd8 100644
--- a/Source/WebCore/html/DOMURL.h
+++ b/Source/WebCore/html/DOMURL.h
@@ -40,10 +40,14 @@ class ScriptExecutionContext;
class DOMURL : public RefCounted<DOMURL> {
public:
static PassRefPtr<DOMURL> create(ScriptExecutionContext* scriptExecutionContext) { return adoptRef(new DOMURL(scriptExecutionContext)); }
+ ~DOMURL();
String createObjectURL(Blob*);
void revokeObjectURL(const String&);
-
+
+ void contextDestroyed();
+ ScriptExecutionContext* scriptExecutionContext() const { return m_scriptExecutionContext; }
+
private:
explicit DOMURL(ScriptExecutionContext*);