Title: [140908] trunk/Source/WebCore
- Revision
- 140908
- Author
- [email protected]
- Date
- 2013-01-26 01:51:02 -0800 (Sat, 26 Jan 2013)
Log Message
Build fix for USE(JSC) && !ENABLE(WORKERS) after r136686.
* bindings/js/DOMRequestState.h:
(WebCore::DOMRequestState::DOMRequestState):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (140907 => 140908)
--- trunk/Source/WebCore/ChangeLog 2013-01-26 09:36:34 UTC (rev 140907)
+++ trunk/Source/WebCore/ChangeLog 2013-01-26 09:51:02 UTC (rev 140908)
@@ -1,3 +1,10 @@
+2013-01-24 Patrick Gansterer <[email protected]>
+
+ Build fix for USE(JSC) && !ENABLE(WORKERS) after r136686.
+
+ * bindings/js/DOMRequestState.h:
+ (WebCore::DOMRequestState::DOMRequestState):
+
2013-01-26 Robert Hogan <[email protected]>
REGRESSION(r120616): Cell's logical height wrongly computed with vertical-align: baseline and rowspan
Modified: trunk/Source/WebCore/bindings/js/DOMRequestState.h (140907 => 140908)
--- trunk/Source/WebCore/bindings/js/DOMRequestState.h 2013-01-26 09:36:34 UTC (rev 140907)
+++ trunk/Source/WebCore/bindings/js/DOMRequestState.h 2013-01-26 09:51:02 UTC (rev 140908)
@@ -51,8 +51,10 @@
Document* document = static_cast<Document*>(m_scriptExecutionContext);
m_exec = scriptStateFromPage(mainThreadNormalWorld(), document->page());
} else {
+#if ENABLE(WORKERS)
WorkerContext* workerContext = static_cast<WorkerContext*>(m_scriptExecutionContext);
m_exec = scriptStateFromWorkerContext(workerContext);
+#endif
}
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes