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 25 matching lines...) Expand all Loading... |
36 #include "FrameView.h" | 36 #include "FrameView.h" |
37 #include "IdentifiersFactory.h" | 37 #include "IdentifiersFactory.h" |
38 #include "InspectorClient.h" | 38 #include "InspectorClient.h" |
39 #include "InspectorCounters.h" | 39 #include "InspectorCounters.h" |
40 #include "InspectorFrontend.h" | 40 #include "InspectorFrontend.h" |
41 #include "InspectorInstrumentation.h" | 41 #include "InspectorInstrumentation.h" |
42 #include "InspectorMemoryAgent.h" | 42 #include "InspectorMemoryAgent.h" |
43 #include "InspectorPageAgent.h" | 43 #include "InspectorPageAgent.h" |
44 #include "InspectorState.h" | 44 #include "InspectorState.h" |
45 #include "InstrumentingAgents.h" | 45 #include "InstrumentingAgents.h" |
46 #include "MemoryUsageSupport.h" | |
47 #include "RenderObject.h" | 46 #include "RenderObject.h" |
48 #include "RenderView.h" | 47 #include "RenderView.h" |
49 #include "TimelineRecordFactory.h" | 48 #include "TimelineRecordFactory.h" |
50 #include "TimelineTraceEventProcessor.h" | 49 #include "TimelineTraceEventProcessor.h" |
| 50 #include "core/platform/MemoryUsageSupport.h" |
51 #include "core/platform/graphics/IntRect.h" | 51 #include "core/platform/graphics/IntRect.h" |
52 #include "core/platform/network/ResourceRequest.h" | 52 #include "core/platform/network/ResourceRequest.h" |
53 #include "core/platform/network/ResourceResponse.h" | 53 #include "core/platform/network/ResourceResponse.h" |
54 | 54 |
55 #include <wtf/CurrentTime.h> | 55 #include <wtf/CurrentTime.h> |
56 | 56 |
57 namespace WebCore { | 57 namespace WebCore { |
58 | 58 |
59 namespace TimelineAgentState { | 59 namespace TimelineAgentState { |
60 static const char timelineAgentEnabled[] = "timelineAgentEnabled"; | 60 static const char timelineAgentEnabled[] = "timelineAgentEnabled"; |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
727 return m_timeConverter.fromMonotonicallyIncreasingTime(WTF::monotonicallyInc
reasingTime()); | 727 return m_timeConverter.fromMonotonicallyIncreasingTime(WTF::monotonicallyInc
reasingTime()); |
728 } | 728 } |
729 | 729 |
730 Page* InspectorTimelineAgent::page() | 730 Page* InspectorTimelineAgent::page() |
731 { | 731 { |
732 return m_pageAgent ? m_pageAgent->page() : 0; | 732 return m_pageAgent ? m_pageAgent->page() : 0; |
733 } | 733 } |
734 | 734 |
735 } // namespace WebCore | 735 } // namespace WebCore |
736 | 736 |
OLD | NEW |