Changeset 100052 in webkit
- Timestamp:
- Nov 11, 2011, 5:37:06 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
bindings/v8/WorkerScriptDebugServer.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r100051 r100052 1 2011-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 1 11 2011-11-11 Julien Chaffraix <jchaffraix@webkit.org> 2 12 -
trunk/Source/WebCore/bindings/v8/WorkerScriptDebugServer.cpp
r97049 r100052 61 61 if (&V8DedicatedWorkerContext::info == typeInfo) 62 62 return V8DedicatedWorkerContext::toNative(prototype); 63 #if ENABLE(SHARED_WORKERS) 63 64 if (&V8SharedWorkerContext::info == typeInfo) 64 65 return V8SharedWorkerContext::toNative(prototype); 66 #endif 65 67 ASSERT_NOT_REACHED(); 66 68 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.