X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_webkit;a=blobdiff_plain;f=Source%2FWebCore%2Fbindings%2Fjs%2FJSDedicatedWorkerContextCustom.cpp;fp=Source%2FWebCore%2Fbindings%2Fjs%2FJSDedicatedWorkerContextCustom.cpp;h=ab0c5ddc6653f1cae3652402a4f573cf4af62c63;hp=2222353bdfa77e0905258c0f2d9e8b196b2796e4;hb=186b2535c234ccc42a8c27998f11be6f718f604f;hpb=1c567be6144228b511852e3cab689fc41b052875 diff --git a/Source/WebCore/bindings/js/JSDedicatedWorkerContextCustom.cpp b/Source/WebCore/bindings/js/JSDedicatedWorkerContextCustom.cpp index 2222353..ab0c5dd 100644 --- a/Source/WebCore/bindings/js/JSDedicatedWorkerContextCustom.cpp +++ b/Source/WebCore/bindings/js/JSDedicatedWorkerContextCustom.cpp @@ -1,6 +1,6 @@ /* - * Copyright (C) 2009 Google Inc. All rights reserved. * Copyright (C) 2009 Apple, Inc. All rights reserved. + * Copyright (C) 2009, 2011 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -47,6 +47,11 @@ JSC::JSValue JSDedicatedWorkerContext::postMessage(JSC::ExecState* exec) return handlePostMessage(exec, impl()); } +JSC::JSValue JSDedicatedWorkerContext::webkitPostMessage(JSC::ExecState* exec) +{ + return handlePostMessage(exec, impl()); +} + } // namespace WebCore #endif // ENABLE(WORKERS)