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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/timeline-test.js

Issue 1769273004: Remove V8RecrusionScope, cleanup call sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 9 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: third_party/WebKit/LayoutTests/http/tests/inspector/timeline-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/timeline-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/timeline-test.js
index 6b13a8755a6f2932faefe09e8321a3d8b145a1b4..cc148cc752a4cf5c4ca707efb51916aee7c41476 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/timeline-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/timeline-test.js
@@ -1,3 +1,10 @@
+function wrapCallFunctionForTimeline(f)
+{
+ var script = document.createElement("script");
+ script.textContent = "(" + f.toString() + ")()\n//# sourceURL=wrapCallFunctionForTimeline.js";
+ document.body.appendChild(script);
+}
+
var initialize_Timeline = function() {
InspectorTest.preloadPanel("timeline");
« no previous file with comments | « extensions/renderer/v8_helpers.h ('k') | third_party/WebKit/LayoutTests/inspector-protocol/timeline/fetch-as-stream.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698