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

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

Issue 2128133002: Timeline AddTraceProvider API Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Timeline AddTraceProvider API Created 4 years, 5 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/inspector/extensions/extensions-timeline-tests.js
diff --git a/third_party/WebKit/LayoutTests/inspector/extensions/extensions-timeline-tests.js b/third_party/WebKit/LayoutTests/inspector/extensions/extensions-timeline-tests.js
new file mode 100644
index 0000000000000000000000000000000000000000..c63d0f4dba9ad7dddf0277d07e4d5a7a2930136c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/extensions/extensions-timeline-tests.js
@@ -0,0 +1,9 @@
+function extension_startTimeline(callback)
caseq 2016/07/20 22:51:49 nit: let's just put them into the test html file.
+{
+ evaluateOnFrontend("InspectorTest.startTimeline(reply);", callback);
+}
+
+function extension_stopTimeline(callback)
+{
+ evaluateOnFrontend("InspectorTest.stopTimeline(reply);", callback);
+}

Powered by Google App Engine
This is Rietveld 408576698