summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/ScriptExecutionContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/ScriptExecutionContext.h')
-rw-r--r--Source/WebCore/dom/ScriptExecutionContext.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/WebCore/dom/ScriptExecutionContext.h b/Source/WebCore/dom/ScriptExecutionContext.h
index aed3411e0..6cbdd0265 100644
--- a/Source/WebCore/dom/ScriptExecutionContext.h
+++ b/Source/WebCore/dom/ScriptExecutionContext.h
@@ -53,6 +53,9 @@ class EventQueue;
class EventTarget;
class MessagePort;
+#if ENABLE(BLOB)
+class PublicURLManager;
+#endif
#if ENABLE(SQL_DATABASE)
class Database;
class DatabaseTaskSynchronizer;
@@ -103,6 +106,9 @@ public:
virtual void resumeActiveDOMObjects();
virtual void stopActiveDOMObjects();
+#if ENABLE(BLOB)
+ PublicURLManager& publicURLManager();
+#endif
void didCreateActiveDOMObject(ActiveDOMObject*, void* upcastPointer);
void willDestroyActiveDOMObject(ActiveDOMObject*);
@@ -205,6 +211,9 @@ private:
bool m_inDispatchErrorEvent;
class PendingException;
OwnPtr<Vector<OwnPtr<PendingException> > > m_pendingExceptions;
+#if ENABLE(BLOB)
+ OwnPtr<PublicURLManager> m_publicURLManager;
+#endif
#if ENABLE(SQL_DATABASE)
RefPtr<DatabaseThread> m_databaseThread;