| 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 21 matching lines...) Expand all Loading... |
| 32 #include "core/inspector/InspectorController.h" | 32 #include "core/inspector/InspectorController.h" |
| 33 | 33 |
| 34 #include "InspectorBackendDispatcher.h" | 34 #include "InspectorBackendDispatcher.h" |
| 35 #include "InspectorFrontend.h" | 35 #include "InspectorFrontend.h" |
| 36 #include "bindings/v8/DOMWrapperWorld.h" | 36 #include "bindings/v8/DOMWrapperWorld.h" |
| 37 #include "core/inspector/IdentifiersFactory.h" | 37 #include "core/inspector/IdentifiersFactory.h" |
| 38 #include "core/inspector/InjectedScriptHost.h" | 38 #include "core/inspector/InjectedScriptHost.h" |
| 39 #include "core/inspector/InjectedScriptManager.h" | 39 #include "core/inspector/InjectedScriptManager.h" |
| 40 #include "core/inspector/InspectorAgent.h" | 40 #include "core/inspector/InspectorAgent.h" |
| 41 #include "core/inspector/InspectorApplicationCacheAgent.h" | 41 #include "core/inspector/InspectorApplicationCacheAgent.h" |
| 42 #include "core/inspector/InspectorBaseAgent.h" | |
| 43 #include "core/inspector/InspectorCSSAgent.h" | 42 #include "core/inspector/InspectorCSSAgent.h" |
| 44 #include "core/inspector/InspectorCanvasAgent.h" | 43 #include "core/inspector/InspectorCanvasAgent.h" |
| 45 #include "core/inspector/InspectorClient.h" | 44 #include "core/inspector/InspectorClient.h" |
| 46 #include "core/inspector/InspectorDOMAgent.h" | 45 #include "core/inspector/InspectorDOMAgent.h" |
| 47 #include "core/inspector/InspectorDOMDebuggerAgent.h" | 46 #include "core/inspector/InspectorDOMDebuggerAgent.h" |
| 48 #include "core/inspector/InspectorDOMStorageAgent.h" | 47 #include "core/inspector/InspectorDOMStorageAgent.h" |
| 49 #include "core/inspector/InspectorDatabaseAgent.h" | 48 #include "core/inspector/InspectorDatabaseAgent.h" |
| 50 #include "core/inspector/InspectorDebuggerAgent.h" | 49 #include "core/inspector/InspectorDebuggerAgent.h" |
| 51 #include "core/inspector/InspectorFileSystemAgent.h" | 50 #include "core/inspector/InspectorFileSystemAgent.h" |
| 52 #include "core/inspector/InspectorFrontendClient.h" | 51 #include "core/inspector/InspectorFrontendClient.h" |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 timelineAgent->didComposite(); | 436 timelineAgent->didComposite(); |
| 438 } | 437 } |
| 439 | 438 |
| 440 void InspectorController::processGPUEvent(double timestamp, int phase, bool fore
ign) | 439 void InspectorController::processGPUEvent(double timestamp, int phase, bool fore
ign) |
| 441 { | 440 { |
| 442 if (InspectorTimelineAgent* timelineAgent = m_instrumentingAgents->inspector
TimelineAgent()) | 441 if (InspectorTimelineAgent* timelineAgent = m_instrumentingAgents->inspector
TimelineAgent()) |
| 443 timelineAgent->processGPUEvent(InspectorTimelineAgent::GPUEvent(timestam
p, phase, foreign)); | 442 timelineAgent->processGPUEvent(InspectorTimelineAgent::GPUEvent(timestam
p, phase, foreign)); |
| 444 } | 443 } |
| 445 | 444 |
| 446 } // namespace WebCore | 445 } // namespace WebCore |
| OLD | NEW |