| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010-2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2010-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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 InspectorController* ic = inspectorController(); | 254 InspectorController* ic = inspectorController(); |
| 255 ic->disconnectFrontend(); | 255 ic->disconnectFrontend(); |
| 256 m_attached = false; | 256 m_attached = false; |
| 257 } | 257 } |
| 258 | 258 |
| 259 void WebDevToolsAgentImpl::didNavigate() | 259 void WebDevToolsAgentImpl::didNavigate() |
| 260 { | 260 { |
| 261 ClientMessageLoopAdapter::didNavigate(); | 261 ClientMessageLoopAdapter::didNavigate(); |
| 262 } | 262 } |
| 263 | 263 |
| 264 void WebDevToolsAgentImpl::continueProgram() |
| 265 { |
| 266 ClientMessageLoopAdapter::didNavigate(); |
| 267 } |
| 268 |
| 264 void WebDevToolsAgentImpl::didBeginFrame(int frameId) | 269 void WebDevToolsAgentImpl::didBeginFrame(int frameId) |
| 265 { | 270 { |
| 266 TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "BeginM
ainThreadFrame", "layerTreeId", m_layerTreeId); | 271 TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "BeginM
ainThreadFrame", "layerTreeId", m_layerTreeId); |
| 267 if (InspectorController* ic = inspectorController()) | 272 if (InspectorController* ic = inspectorController()) |
| 268 ic->didBeginFrame(frameId); | 273 ic->didBeginFrame(frameId); |
| 269 } | 274 } |
| 270 | 275 |
| 271 void WebDevToolsAgentImpl::didCancelFrame() | 276 void WebDevToolsAgentImpl::didCancelFrame() |
| 272 { | 277 { |
| 273 if (InspectorController* ic = inspectorController()) | 278 if (InspectorController* ic = inspectorController()) |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_removeBreakpointCmd) | 727 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_removeBreakpointCmd) |
| 723 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_setBreakpointsActiveCmd); | 728 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_setBreakpointsActiveCmd); |
| 724 } | 729 } |
| 725 | 730 |
| 726 void WebDevToolsAgent::processPendingMessages() | 731 void WebDevToolsAgent::processPendingMessages() |
| 727 { | 732 { |
| 728 PageScriptDebugServer::shared().runPendingTasks(); | 733 PageScriptDebugServer::shared().runPendingTasks(); |
| 729 } | 734 } |
| 730 | 735 |
| 731 } // namespace blink | 736 } // namespace blink |
| OLD | NEW |