| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #if ENABLE(WORKERS) | 29 #if ENABLE(WORKERS) |
| 30 | 30 |
| 31 #include "WorkerScriptController.h" | 31 #include "WorkerScriptController.h" |
| 32 | 32 |
| 33 #include "JSDOMBinding.h" | 33 #include "JSDOMBinding.h" |
| 34 #include "JSWorkerContext.h" | 34 #include "JSWorkerContext.h" |
| 35 #include "ScriptSourceCode.h" | 35 #include "ScriptSourceCode.h" |
| 36 #include "ScriptValue.h" | 36 #include "ScriptValue.h" |
| 37 #include "WorkerContext.h" | 37 #include "WorkerContext.h" |
| 38 #include "WorkerMessagingProxy.h" | 38 #include "WorkerObjectProxy.h" |
| 39 #include "WorkerThread.h" | 39 #include "WorkerThread.h" |
| 40 #include <interpreter/Interpreter.h> | 40 #include <interpreter/Interpreter.h> |
| 41 #include <runtime/Completion.h> | 41 #include <runtime/Completion.h> |
| 42 #include <runtime/Completion.h> | 42 #include <runtime/Completion.h> |
| 43 #include <runtime/JSLock.h> | 43 #include <runtime/JSLock.h> |
| 44 | 44 |
| 45 using namespace JSC; | 45 using namespace JSC; |
| 46 | 46 |
| 47 namespace WebCore { | 47 namespace WebCore { |
| 48 | 48 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 m_executionForbidden = true; | 109 m_executionForbidden = true; |
| 110 m_globalData->timeoutChecker.setTimeoutInterval(1); // 1ms is the smallest t
imeout that can be set. | 110 m_globalData->timeoutChecker.setTimeoutInterval(1); // 1ms is the smallest t
imeout that can be set. |
| 111 } | 111 } |
| 112 | 112 |
| 113 } // namespace WebCore | 113 } // namespace WebCore |
| 114 | 114 |
| 115 #endif // ENABLE(WORKERS) | 115 #endif // ENABLE(WORKERS) |
| 116 | 116 |
| 117 | 117 |
| 118 | 118 |
| OLD | NEW |