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

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

Issue 732593002: DevTools: Make StepInto work across script boundaries and Blink process tasks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 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 | Annotate | Revision Log
OLDNEW
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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 if (InspectorProfilerAgent* profilerAgent = m_instrumentingAgents->inspector ProfilerAgent()) 463 if (InspectorProfilerAgent* profilerAgent = m_instrumentingAgents->inspector ProfilerAgent())
464 profilerAgent->willProcessTask(); 464 profilerAgent->willProcessTask();
465 } 465 }
466 466
467 void InspectorController::didProcessTask() 467 void InspectorController::didProcessTask()
468 { 468 {
469 if (InspectorTimelineAgent* timelineAgent = m_instrumentingAgents->inspector TimelineAgent()) 469 if (InspectorTimelineAgent* timelineAgent = m_instrumentingAgents->inspector TimelineAgent())
470 timelineAgent->didProcessTask(); 470 timelineAgent->didProcessTask();
471 if (InspectorProfilerAgent* profilerAgent = m_instrumentingAgents->inspector ProfilerAgent()) 471 if (InspectorProfilerAgent* profilerAgent = m_instrumentingAgents->inspector ProfilerAgent())
472 profilerAgent->didProcessTask(); 472 profilerAgent->didProcessTask();
473 if (InspectorDOMDebuggerAgent* domDebuggerAgent = m_instrumentingAgents->ins pectorDOMDebuggerAgent())
474 domDebuggerAgent->didProcessTask();
475 } 473 }
476 474
477 void InspectorController::flushPendingFrontendMessages() 475 void InspectorController::flushPendingFrontendMessages()
478 { 476 {
479 m_agents.flushPendingFrontendMessages(); 477 m_agents.flushPendingFrontendMessages();
480 } 478 }
481 479
482 void InspectorController::didCommitLoadForMainFrame() 480 void InspectorController::didCommitLoadForMainFrame()
483 { 481 {
484 m_agents.didCommitLoadForMainFrame(); 482 m_agents.didCommitLoadForMainFrame();
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 m_layerTreeAgent->willAddPageOverlay(layer); 526 m_layerTreeAgent->willAddPageOverlay(layer);
529 } 527 }
530 528
531 void InspectorController::didRemovePageOverlay(const GraphicsLayer* layer) 529 void InspectorController::didRemovePageOverlay(const GraphicsLayer* layer)
532 { 530 {
533 if (m_layerTreeAgent) 531 if (m_layerTreeAgent)
534 m_layerTreeAgent->didRemovePageOverlay(layer); 532 m_layerTreeAgent->didRemovePageOverlay(layer);
535 } 533 }
536 534
537 } // namespace blink 535 } // namespace blink
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp ('k') | Source/core/inspector/InspectorDOMDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698