Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Unified Diff: Source/core/workers/AbstractWorker.cpp

Issue 17236004: Update AbstractWorker, Worker and SharedWorker to match the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/workers/AbstractWorker.cpp
diff --git a/Source/core/workers/AbstractWorker.cpp b/Source/core/workers/AbstractWorker.cpp
index 3ca3320407506602751106dd2670432fbfdee794..f173ea55173be98af0066b46e6af7c59c71ea5e5 100644
--- a/Source/core/workers/AbstractWorker.cpp
+++ b/Source/core/workers/AbstractWorker.cpp
@@ -40,21 +40,14 @@
namespace WebCore {
-AbstractWorker::AbstractWorker(ScriptExecutionContext* context)
- : ActiveDOMObject(context)
+AbstractWorker::AbstractWorker()
{
- ScriptWrappable::init(this);
}
AbstractWorker::~AbstractWorker()
{
}
-void AbstractWorker::contextDestroyed()
-{
- ActiveDOMObject::contextDestroyed();
-}
-
KURL AbstractWorker::resolveURL(const String& url, ExceptionCode& ec)
{
if (url.isEmpty()) {

Powered by Google App Engine
This is Rietveld 408576698