| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #include "core/inspector/IdentifiersFactory.h" | 55 #include "core/inspector/IdentifiersFactory.h" |
| 56 #include "core/inspector/InspectedFrames.h" | 56 #include "core/inspector/InspectedFrames.h" |
| 57 #include "core/inspector/InspectorCSSAgent.h" | 57 #include "core/inspector/InspectorCSSAgent.h" |
| 58 #include "core/inspector/InspectorInstrumentation.h" | 58 #include "core/inspector/InspectorInstrumentation.h" |
| 59 #include "core/inspector/InspectorResourceContentLoader.h" | 59 #include "core/inspector/InspectorResourceContentLoader.h" |
| 60 #include "core/loader/DocumentLoader.h" | 60 #include "core/loader/DocumentLoader.h" |
| 61 #include "core/loader/FrameLoader.h" | 61 #include "core/loader/FrameLoader.h" |
| 62 #include "platform/MIMETypeRegistry.h" | 62 #include "platform/MIMETypeRegistry.h" |
| 63 #include "platform/PlatformResourceLoader.h" | 63 #include "platform/PlatformResourceLoader.h" |
| 64 #include "platform/UserGestureIndicator.h" | 64 #include "platform/UserGestureIndicator.h" |
| 65 #include "platform/inspector_protocol/Values.h" | |
| 66 #include "platform/v8_inspector/public/V8InspectorSession.h" | 65 #include "platform/v8_inspector/public/V8InspectorSession.h" |
| 67 #include "platform/weborigin/SecurityOrigin.h" | 66 #include "platform/weborigin/SecurityOrigin.h" |
| 68 #include "wtf/CurrentTime.h" | 67 #include "wtf/CurrentTime.h" |
| 69 #include "wtf/ListHashSet.h" | 68 #include "wtf/ListHashSet.h" |
| 70 #include "wtf/Vector.h" | 69 #include "wtf/Vector.h" |
| 71 #include "wtf/text/Base64.h" | 70 #include "wtf/text/Base64.h" |
| 72 #include "wtf/text/TextEncoding.h" | 71 #include "wtf/text/TextEncoding.h" |
| 73 #include <memory> | 72 #include <memory> |
| 74 | 73 |
| 75 namespace blink { | 74 namespace blink { |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 } | 764 } |
| 766 | 765 |
| 767 DEFINE_TRACE(InspectorPageAgent) | 766 DEFINE_TRACE(InspectorPageAgent) |
| 768 { | 767 { |
| 769 visitor->trace(m_inspectedFrames); | 768 visitor->trace(m_inspectedFrames); |
| 770 visitor->trace(m_inspectorResourceContentLoader); | 769 visitor->trace(m_inspectorResourceContentLoader); |
| 771 InspectorBaseAgent::trace(visitor); | 770 InspectorBaseAgent::trace(visitor); |
| 772 } | 771 } |
| 773 | 772 |
| 774 } // namespace blink | 773 } // namespace blink |
| OLD | NEW |