summaryrefslogtreecommitdiffstats
path: root/WebCore/workers/SharedWorkerContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/workers/SharedWorkerContext.cpp')
-rw-r--r--WebCore/workers/SharedWorkerContext.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/WebCore/workers/SharedWorkerContext.cpp b/WebCore/workers/SharedWorkerContext.cpp
index ef35a60..2c50d94 100644
--- a/WebCore/workers/SharedWorkerContext.cpp
+++ b/WebCore/workers/SharedWorkerContext.cpp
@@ -39,6 +39,7 @@
#include "MessageEvent.h"
#include "NotImplemented.h"
#include "SharedWorkerThread.h"
+#include "WorkerObjectProxy.h"
namespace WebCore {
@@ -52,6 +53,17 @@ SharedWorkerContext::~SharedWorkerContext()
{
}
+void SharedWorkerContext::forwardException(const String&, int, const String&)
+{
+ // FIXME: forward to console (do not need to report to parent context).
+}
+
+void SharedWorkerContext::addMessage(MessageDestination, MessageSource, MessageType, MessageLevel, const String&, unsigned, const String&)
+{
+ // FIXME: forward to console.
+ notImplemented();
+}
+
void SharedWorkerContext::dispatchConnect(PassRefPtr<MessagePort> port)
{
// Since close() stops the thread event loop, this should not ever get called while closing.