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

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

Issue 26679003: Move platform/graphics/chromium/* to platform/graphics/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rename fix Created 7 years, 1 month 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
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/platform/graphics/Canvas2DLayerBridge.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "core/inspector/InspectorInstrumentation.h" 43 #include "core/inspector/InspectorInstrumentation.h"
44 #include "core/inspector/InspectorMemoryAgent.h" 44 #include "core/inspector/InspectorMemoryAgent.h"
45 #include "core/inspector/InspectorPageAgent.h" 45 #include "core/inspector/InspectorPageAgent.h"
46 #include "core/inspector/InspectorState.h" 46 #include "core/inspector/InspectorState.h"
47 #include "core/inspector/InstrumentingAgents.h" 47 #include "core/inspector/InstrumentingAgents.h"
48 #include "core/inspector/ScriptCallStack.h" 48 #include "core/inspector/ScriptCallStack.h"
49 #include "core/inspector/TimelineRecordFactory.h" 49 #include "core/inspector/TimelineRecordFactory.h"
50 #include "core/inspector/TimelineTraceEventProcessor.h" 50 #include "core/inspector/TimelineTraceEventProcessor.h"
51 #include "core/loader/DocumentLoader.h" 51 #include "core/loader/DocumentLoader.h"
52 #include "core/page/PageConsole.h" 52 #include "core/page/PageConsole.h"
53 #include "core/platform/graphics/DeferredImageDecoder.h"
53 #include "core/platform/graphics/GraphicsLayer.h" 54 #include "core/platform/graphics/GraphicsLayer.h"
54 #include "core/platform/graphics/chromium/DeferredImageDecoder.h"
55 #include "core/rendering/RenderObject.h" 55 #include "core/rendering/RenderObject.h"
56 #include "core/rendering/RenderView.h" 56 #include "core/rendering/RenderView.h"
57 #include "core/xml/XMLHttpRequest.h" 57 #include "core/xml/XMLHttpRequest.h"
58 #include "platform/TraceEvent.h" 58 #include "platform/TraceEvent.h"
59 #include "platform/network/ResourceRequest.h" 59 #include "platform/network/ResourceRequest.h"
60 60
61 #include "wtf/CurrentTime.h" 61 #include "wtf/CurrentTime.h"
62 62
63 namespace WebCore { 63 namespace WebCore {
64 64
(...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 return m_timeConverter.fromMonotonicallyIncreasingTime(WTF::monotonicallyInc reasingTime()); 983 return m_timeConverter.fromMonotonicallyIncreasingTime(WTF::monotonicallyInc reasingTime());
984 } 984 }
985 985
986 Page* InspectorTimelineAgent::page() 986 Page* InspectorTimelineAgent::page()
987 { 987 {
988 return m_pageAgent ? m_pageAgent->page() : 0; 988 return m_pageAgent ? m_pageAgent->page() : 0;
989 } 989 }
990 990
991 } // namespace WebCore 991 } // namespace WebCore
992 992
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/platform/graphics/Canvas2DLayerBridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698