Index: Source/WebCore/html/DOMURL.h |
=================================================================== |
--- Source/WebCore/html/DOMURL.h (revision 78138) |
+++ Source/WebCore/html/DOMURL.h (working copy) |
@@ -40,10 +40,14 @@ |
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*); |