| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "core/inspector/AsyncCallTracker.h" | 31 #include "core/inspector/AsyncCallTracker.h" |
| 32 | 32 |
| 33 #include "core/dom/ContextLifecycleObserver.h" | 33 #include "core/dom/ContextLifecycleObserver.h" |
| 34 #include "core/dom/ExecutionContext.h" | 34 #include "core/dom/ExecutionContext.h" |
| 35 #include "core/dom/ExecutionContextTask.h" | 35 #include "core/dom/ExecutionContextTask.h" |
| 36 #include "core/events/Event.h" | 36 #include "core/events/Event.h" |
| 37 #include "core/events/EventTarget.h" | 37 #include "core/events/EventTarget.h" |
| 38 #include "core/inspector/AsyncOperationMap.h" | 38 #include "core/inspector/v8/AsyncOperationMap.h" |
| 39 #include "core/xmlhttprequest/XMLHttpRequest.h" | 39 #include "core/xmlhttprequest/XMLHttpRequest.h" |
| 40 #include "core/xmlhttprequest/XMLHttpRequestUpload.h" | 40 #include "core/xmlhttprequest/XMLHttpRequestUpload.h" |
| 41 #include "platform/ScriptForbiddenScope.h" | 41 #include "platform/ScriptForbiddenScope.h" |
| 42 #include "wtf/text/StringBuilder.h" | 42 #include "wtf/text/StringBuilder.h" |
| 43 #include "wtf/text/StringHash.h" | 43 #include "wtf/text/StringHash.h" |
| 44 | 44 |
| 45 namespace { | 45 namespace { |
| 46 | 46 |
| 47 static const char setTimeoutName[] = "setTimeout"; | 47 static const char setTimeoutName[] = "setTimeout"; |
| 48 static const char setIntervalName[] = "setInterval"; | 48 static const char setIntervalName[] = "setInterval"; |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 | 423 |
| 424 DEFINE_TRACE(AsyncCallTracker) | 424 DEFINE_TRACE(AsyncCallTracker) |
| 425 { | 425 { |
| 426 #if ENABLE(OILPAN) | 426 #if ENABLE(OILPAN) |
| 427 visitor->trace(m_executionContextDataMap); | 427 visitor->trace(m_executionContextDataMap); |
| 428 visitor->trace(m_instrumentingAgents); | 428 visitor->trace(m_instrumentingAgents); |
| 429 #endif | 429 #endif |
| 430 } | 430 } |
| 431 | 431 |
| 432 } // namespace blink | 432 } // namespace blink |
| OLD | NEW |