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

Side by Side Diff: Source/web/WebDevToolsAgentImpl.cpp

Issue 330603003: Renaming didNavigate to continueProgram (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaselined Created 6 years, 6 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
« no previous file with comments | « Source/web/WebDevToolsAgentImpl.h ('k') | public/web/WebDevToolsAgent.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) 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
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
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
OLDNEW
« no previous file with comments | « Source/web/WebDevToolsAgentImpl.h ('k') | public/web/WebDevToolsAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698