⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 100052 in webkit


Ignore:
Timestamp:
Nov 11, 2011, 5:37:06 PM (15 years ago)
Author:
jknotten@chromium.org
Message:

[Chromium] Enable building without shared workers.
https://bugs.webkit.org/show_bug.cgi?id=72122

Reviewed by Yury Semikhatsky.

  • bindings/v8/WorkerScriptDebugServer.cpp:

(WebCore::retrieveWorkerContext):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r100051 r100052  
     12011-11-11  John Knottenbelt  <jknotten@chromium.org>
     2
     3        [Chromium] Enable building without shared workers.
     4        https://bugs.webkit.org/show_bug.cgi?id=72122
     5
     6        Reviewed by Yury Semikhatsky.
     7
     8        * bindings/v8/WorkerScriptDebugServer.cpp:
     9        (WebCore::retrieveWorkerContext):
     10
    1112011-11-11  Julien Chaffraix  <jchaffraix@webkit.org>
    212
  • trunk/Source/WebCore/bindings/v8/WorkerScriptDebugServer.cpp

    r97049 r100052  
    6161    if (&V8DedicatedWorkerContext::info == typeInfo)
    6262        return V8DedicatedWorkerContext::toNative(prototype);
     63#if ENABLE(SHARED_WORKERS)
    6364    if (&V8SharedWorkerContext::info == typeInfo)
    6465        return V8SharedWorkerContext::toNative(prototype);
     66#endif
    6567    ASSERT_NOT_REACHED();
    6668    return 0;
Note: See TracChangeset for help on using the changeset viewer.