summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/page/DOMWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/page/DOMWindow.h')
-rw-r--r--Source/WebCore/page/DOMWindow.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/WebCore/page/DOMWindow.h b/Source/WebCore/page/DOMWindow.h
index 8f434d6..3614627 100644
--- a/Source/WebCore/page/DOMWindow.h
+++ b/Source/WebCore/page/DOMWindow.h
@@ -34,12 +34,12 @@
namespace WebCore {
class BarInfo;
- class Blob;
class CSSRuleList;
class CSSStyleDeclaration;
class Console;
class DOMApplicationCache;
class DOMSelection;
+ class DOMURL;
class Database;
class DatabaseCallback;
class Document;
@@ -343,8 +343,7 @@ namespace WebCore {
using RefCounted<DOMWindow>::deref;
#if ENABLE(BLOB)
- String createObjectURL(Blob*);
- void revokeObjectURL(const String&);
+ DOMURL* webkitURL() const;
#endif
#if ENABLE(DATABASE)
@@ -469,6 +468,10 @@ namespace WebCore {
#if ENABLE(WEB_TIMING)
mutable RefPtr<Performance> m_performance;
#endif
+
+#if ENABLE(BLOB)
+ mutable RefPtr<DOMURL> m_domURL;
+#endif
};
inline String DOMWindow::status() const