| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "core/inspector/InspectorInstrumentation.h" | 42 #include "core/inspector/InspectorInstrumentation.h" |
| 43 #include "core/inspector/InspectorMemoryAgent.h" | 43 #include "core/inspector/InspectorMemoryAgent.h" |
| 44 #include "core/inspector/InspectorPageAgent.h" | 44 #include "core/inspector/InspectorPageAgent.h" |
| 45 #include "core/inspector/InspectorState.h" | 45 #include "core/inspector/InspectorState.h" |
| 46 #include "core/inspector/InstrumentingAgents.h" | 46 #include "core/inspector/InstrumentingAgents.h" |
| 47 #include "core/inspector/ScriptCallStack.h" | 47 #include "core/inspector/ScriptCallStack.h" |
| 48 #include "core/inspector/TimelineRecordFactory.h" | 48 #include "core/inspector/TimelineRecordFactory.h" |
| 49 #include "core/inspector/TimelineTraceEventProcessor.h" | 49 #include "core/inspector/TimelineTraceEventProcessor.h" |
| 50 #include "core/loader/DocumentLoader.h" | 50 #include "core/loader/DocumentLoader.h" |
| 51 #include "core/page/PageConsole.h" | 51 #include "core/page/PageConsole.h" |
| 52 #include "core/platform/MemoryUsageSupport.h" | |
| 53 #include "core/platform/graphics/chromium/DeferredImageDecoder.h" | 52 #include "core/platform/graphics/chromium/DeferredImageDecoder.h" |
| 54 #include "core/rendering/RenderObject.h" | 53 #include "core/rendering/RenderObject.h" |
| 55 #include "core/rendering/RenderView.h" | 54 #include "core/rendering/RenderView.h" |
| 56 #include "core/xml/XMLHttpRequest.h" | 55 #include "core/xml/XMLHttpRequest.h" |
| 57 #include "platform/TraceEvent.h" | 56 #include "platform/TraceEvent.h" |
| 58 #include "platform/network/ResourceRequest.h" | 57 #include "platform/network/ResourceRequest.h" |
| 59 | 58 |
| 60 #include "wtf/CurrentTime.h" | 59 #include "wtf/CurrentTime.h" |
| 61 | 60 |
| 62 namespace WebCore { | 61 namespace WebCore { |
| (...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 return m_timeConverter.fromMonotonicallyIncreasingTime(WTF::monotonicallyInc
reasingTime()); | 953 return m_timeConverter.fromMonotonicallyIncreasingTime(WTF::monotonicallyInc
reasingTime()); |
| 955 } | 954 } |
| 956 | 955 |
| 957 Page* InspectorTimelineAgent::page() | 956 Page* InspectorTimelineAgent::page() |
| 958 { | 957 { |
| 959 return m_pageAgent ? m_pageAgent->page() : 0; | 958 return m_pageAgent ? m_pageAgent->page() : 0; |
| 960 } | 959 } |
| 961 | 960 |
| 962 } // namespace WebCore | 961 } // namespace WebCore |
| 963 | 962 |
| OLD | NEW |