Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Side by Side Diff: Source/core/inspector/InspectorTimelineAgent.cpp

Issue 37503004: Remove MemoryUsageSupport (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: re-up Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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"
56 #include "platform/MemoryUsageSupport.h"
57 #include "platform/TraceEvent.h" 57 #include "platform/TraceEvent.h"
58 #include "platform/network/ResourceRequest.h" 58 #include "platform/network/ResourceRequest.h"
59 59
60 #include "wtf/CurrentTime.h" 60 #include "wtf/CurrentTime.h"
61 61
62 namespace WebCore { 62 namespace WebCore {
63 63
64 namespace TimelineAgentState { 64 namespace TimelineAgentState {
65 static const char enabled[] = "enabled"; 65 static const char enabled[] = "enabled";
66 static const char started[] = "started"; 66 static const char started[] = "started";
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 return m_timeConverter.fromMonotonicallyIncreasingTime(WTF::monotonicallyInc reasingTime()); 954 return m_timeConverter.fromMonotonicallyIncreasingTime(WTF::monotonicallyInc reasingTime());
955 } 955 }
956 956
957 Page* InspectorTimelineAgent::page() 957 Page* InspectorTimelineAgent::page()
958 { 958 {
959 return m_pageAgent ? m_pageAgent->page() : 0; 959 return m_pageAgent ? m_pageAgent->page() : 0;
960 } 960 }
961 961
962 } // namespace WebCore 962 } // namespace WebCore
963 963
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698