| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 "config.h" | 31 #include "config.h" |
| 32 #include "core/inspector/InspectorPageAgent.h" | 32 #include "core/inspector/InspectorPageAgent.h" |
| 33 | 33 |
| 34 #include "bindings/core/v8/DOMWrapperWorld.h" | 34 #include "bindings/core/v8/DOMWrapperWorld.h" |
| 35 #include "bindings/core/v8/ScriptController.h" | 35 #include "bindings/core/v8/ScriptController.h" |
| 36 #include "bindings/core/v8/ScriptRegexp.h" | 36 #include "bindings/core/v8/ScriptRegexp.h" |
| 37 #include "core/HTMLNames.h" | 37 #include "core/HTMLNames.h" |
| 38 #include "core/css/CSSStyleSheetResource.h" |
| 38 #include "core/dom/DOMImplementation.h" | 39 #include "core/dom/DOMImplementation.h" |
| 39 #include "core/dom/Document.h" | 40 #include "core/dom/Document.h" |
| 40 #include "core/fetch/CSSStyleSheetResource.h" | 41 #include "core/dom/ImageResource.h" |
| 41 #include "core/fetch/FontResource.h" | 42 #include "core/fetch/FontResource.h" |
| 42 #include "core/fetch/ImageResource.h" | |
| 43 #include "core/fetch/MemoryCache.h" | 43 #include "core/fetch/MemoryCache.h" |
| 44 #include "core/fetch/Resource.h" | 44 #include "core/fetch/Resource.h" |
| 45 #include "core/fetch/ResourceFetcher.h" | 45 #include "core/fetch/ResourceFetcher.h" |
| 46 #include "core/frame/LocalFrame.h" | 46 #include "core/frame/LocalFrame.h" |
| 47 #include "core/html/HTMLFrameOwnerElement.h" | 47 #include "core/html/HTMLFrameOwnerElement.h" |
| 48 #include "core/html/VoidCallback.h" | 48 #include "core/html/VoidCallback.h" |
| 49 #include "core/html/imports/HTMLImportLoader.h" | 49 #include "core/html/imports/HTMLImportLoader.h" |
| 50 #include "core/html/imports/HTMLImportsController.h" | 50 #include "core/html/imports/HTMLImportsController.h" |
| 51 #include "core/html/parser/TextResourceDecoder.h" | 51 #include "core/html/parser/TextResourceDecoder.h" |
| 52 #include "core/inspector/ContentSearchUtils.h" | 52 #include "core/inspector/ContentSearchUtils.h" |
| (...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 { | 890 { |
| 891 visitor->trace(m_inspectedFrame); | 891 visitor->trace(m_inspectedFrame); |
| 892 visitor->trace(m_debuggerAgent); | 892 visitor->trace(m_debuggerAgent); |
| 893 visitor->trace(m_cssAgent); | 893 visitor->trace(m_cssAgent); |
| 894 visitor->trace(m_overlay); | 894 visitor->trace(m_overlay); |
| 895 visitor->trace(m_inspectorResourceContentLoader); | 895 visitor->trace(m_inspectorResourceContentLoader); |
| 896 InspectorBaseAgent::trace(visitor); | 896 InspectorBaseAgent::trace(visitor); |
| 897 } | 897 } |
| 898 | 898 |
| 899 } // namespace blink | 899 } // namespace blink |
| OLD | NEW |