Skip to content

Commit 1b6331c

Browse files
committed
Add goog.require()s for implemented interfaces.
This will become a compiler warning/error soon.
1 parent 099b687 commit 1b6331c

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

javascript/webdriver/firefoxdomexecutor.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ goog.require('bot.response');
1818
goog.require('goog.json');
1919
goog.require('goog.userAgent.product');
2020
goog.require('webdriver.Command');
21+
goog.require('webdriver.CommandExecutor');
2122
goog.require('webdriver.CommandName');
2223

2324

javascript/webdriver/http/corsclient.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
goog.provide('webdriver.http.CorsClient');
1616

1717
goog.require('goog.json');
18+
goog.require('webdriver.http.Client');
1819
goog.require('webdriver.http.Response');
1920

2021

javascript/webdriver/http/http.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ goog.provide('webdriver.http.Response');
2525
goog.require('bot.ErrorCode');
2626
goog.require('goog.array');
2727
goog.require('goog.json');
28+
goog.require('webdriver.CommandExecutor');
2829
goog.require('webdriver.CommandName');
2930
goog.require('webdriver.promise.Deferred');
3031

javascript/webdriver/http/xhrclient.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ goog.provide('webdriver.http.XhrClient');
1818

1919
goog.require('goog.json');
2020
goog.require('goog.net.XmlHttp');
21+
goog.require('webdriver.http.Client');
2122
goog.require('webdriver.http.Response');
2223

2324

javascript/webdriver/webdriver.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ goog.require('webdriver.Session');
3838
goog.require('webdriver.logging');
3939
goog.require('webdriver.promise');
4040
goog.require('webdriver.until');
41+
goog.require('webdriver.promise.Thenable');
4142

4243

4344
//////////////////////////////////////////////////////////////////////////////

third_party/js/wgxpath/nameTest.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
goog.provide('wgxpath.NameTest');
88

99
goog.require('goog.dom.NodeType');
10+
goog.require('wgxpath.NodeTest');
1011

1112

1213

0 commit comments

Comments
 (0)