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

Unified Diff: Source/core/testing/Internals.cpp

Issue 54273005: DevTools: add ids to compositor frames (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/testing/Internals.cpp
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
index 988a82036658a0a2b8f7507d0d2d2d2b767e0a88..e3bc507cda698af41d9e15edd855c3fa2087e111 100644
--- a/Source/core/testing/Internals.cpp
+++ b/Source/core/testing/Internals.cpp
@@ -1431,9 +1431,9 @@ PassRefPtr<NodeList> Internals::nodesFromRect(Document* document, int centerX, i
return StaticNodeList::adopt(matches);
}
-void Internals::emitInspectorDidBeginFrame()
+void Internals::emitInspectorDidBeginFrame(int frameId)
{
- contextDocument()->page()->inspectorController().didBeginFrame();
+ contextDocument()->page()->inspectorController().didBeginFrame(frameId);
}
void Internals::emitInspectorDidCancelFrame()

Powered by Google App Engine
This is Rietveld 408576698