| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * Copyright (C) 2012 Google Inc. All Rights Reserved. | 3 * Copyright (C) 2012 Google Inc. All Rights Reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 * | 25 * |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "config.h" | 28 #include "config.h" |
| 29 #include "ScriptExecutionContext.h" | 29 #include "ScriptExecutionContext.h" |
| 30 | 30 |
| 31 #include "CachedScript.h" | |
| 32 #include "DOMTimer.h" | 31 #include "DOMTimer.h" |
| 33 #include "DatabaseContext.h" | 32 #include "DatabaseContext.h" |
| 34 #include "ErrorEvent.h" | 33 #include "ErrorEvent.h" |
| 35 #include "EventTarget.h" | 34 #include "EventTarget.h" |
| 36 #include "MessagePort.h" | 35 #include "MessagePort.h" |
| 37 #include "PublicURLManager.h" | 36 #include "PublicURLManager.h" |
| 38 #include "ScriptCallStack.h" | 37 #include "ScriptCallStack.h" |
| 39 #include "WebCoreMemoryInstrumentation.h" | 38 #include "WebCoreMemoryInstrumentation.h" |
| 40 #include "WorkerContext.h" | 39 #include "WorkerContext.h" |
| 41 #include "WorkerThread.h" | 40 #include "WorkerThread.h" |
| 41 #include "core/loader/cache/CachedScript.h" |
| 42 #include <wtf/MainThread.h> | 42 #include <wtf/MainThread.h> |
| 43 #include <wtf/MemoryInstrumentationHashMap.h> | 43 #include <wtf/MemoryInstrumentationHashMap.h> |
| 44 #include <wtf/MemoryInstrumentationVector.h> | 44 #include <wtf/MemoryInstrumentationVector.h> |
| 45 #include <wtf/Vector.h> | 45 #include <wtf/Vector.h> |
| 46 | 46 |
| 47 namespace WTF { | 47 namespace WTF { |
| 48 | 48 |
| 49 template<> struct SequenceMemoryInstrumentationTraits<WebCore::ContextDestructio
nObserver*> { | 49 template<> struct SequenceMemoryInstrumentationTraits<WebCore::ContextDestructio
nObserver*> { |
| 50 template <typename I> static void reportMemoryUsage(I, I, MemoryClassInfo&)
{ } | 50 template <typename I> static void reportMemoryUsage(I, I, MemoryClassInfo&)
{ } |
| 51 }; | 51 }; |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 { | 369 { |
| 370 } | 370 } |
| 371 | 371 |
| 372 void ScriptExecutionContext::setDatabaseContext(DatabaseContext* databaseContext
) | 372 void ScriptExecutionContext::setDatabaseContext(DatabaseContext* databaseContext
) |
| 373 { | 373 { |
| 374 ASSERT(!m_databaseContext); | 374 ASSERT(!m_databaseContext); |
| 375 m_databaseContext = databaseContext; | 375 m_databaseContext = databaseContext; |
| 376 } | 376 } |
| 377 | 377 |
| 378 } // namespace WebCore | 378 } // namespace WebCore |
| OLD | NEW |