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

Unified Diff: third_party/WebKit/Source/devtools/front_end/externs.js

Issue 2513423003: DevTools: Convert inspector-unit tests to use reusable test harness (Closed)
Patch Set: create shell module Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/externs.js
diff --git a/third_party/WebKit/Source/devtools/front_end/externs.js b/third_party/WebKit/Source/devtools/front_end/externs.js
index ce5dd2e324a988bb66deaa3d99f8dc20024f02f3..acd501443aa5bc567d1aa8e69b4a4fa4f5df9c9f 100644
--- a/third_party/WebKit/Source/devtools/front_end/externs.js
+++ b/third_party/WebKit/Source/devtools/front_end/externs.js
@@ -806,6 +806,9 @@ Terminal.prototype = {
on: function(eventName, handler) {}
};
+var testRunner = {};
einbinder 2016/11/30 19:51:06 Can we somehow enforce that this might be undefine
chenwilliam 2016/11/30 23:06:03 I moved the type definition into the test_runner m
+testRunner.notifyDone = function() {};
+
// Module namespaces.
var Accessibility = {};
var Animation = {};
@@ -840,10 +843,12 @@ var SDK = {};
var Security = {};
var Services = {};
var Settings = {};
+var Shell = {};
var Snippets = {};
var SourceFrame = {};
var Sources = {};
var Terminal = {};
+var TestRunner = {};
var TextEditor = {};
var Timeline = {};
var TimelineModel = {};

Powered by Google App Engine
This is Rietveld 408576698