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

Unified Diff: chrome/test/data/webui/bluetooth_internals_browsertest.js

Issue 2927653002: WebUI: Move test_browser_proxy.js one level up. (Closed)
Patch Set: Created 3 years, 6 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: chrome/test/data/webui/bluetooth_internals_browsertest.js
diff --git a/chrome/test/data/webui/bluetooth_internals_browsertest.js b/chrome/test/data/webui/bluetooth_internals_browsertest.js
index a7ab6ad95ddd5610298db8cfd455771ba9d12f30..ec9f8b3f205c6532c50fc91a3cac04f64da14cc7 100644
--- a/chrome/test/data/webui/bluetooth_internals_browsertest.js
+++ b/chrome/test/data/webui/bluetooth_internals_browsertest.js
@@ -38,7 +38,7 @@ BluetoothInternalsTest.prototype = {
ROOT_PATH + 'ui/webui/resources/js/promise_resolver.js',
ROOT_PATH + 'ui/webui/resources/js/cr.js',
ROOT_PATH + 'ui/webui/resources/js/util.js',
- ROOT_PATH + 'chrome/test/data/webui/settings/test_browser_proxy.js',
+ ROOT_PATH + 'chrome/test/data/webui/test_browser_proxy.js',
],
preLoad: function() {
@@ -60,7 +60,7 @@ BluetoothInternalsTest.prototype = {
* @extends {TestBrowserProxyBase}
rbpotter 2017/06/07 00:32:01 Should probably be test.TestBrowserProxy. TestBrow
dpapad 2017/06/07 00:42:53 Done.
*/
var TestAdapterFactoryProxy = function() {
- settings.TestBrowserProxy.call(this, [
+ test.TestBrowserProxy.call(this, [
'getAdapter',
]);
@@ -71,7 +71,7 @@ BluetoothInternalsTest.prototype = {
};
TestAdapterFactoryProxy.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: test.TestBrowserProxy.prototype,
getAdapter: function() {
this.methodCalled('getAdapter');
@@ -88,7 +88,7 @@ BluetoothInternalsTest.prototype = {
* @extends {TestBrowserProxyBase}
*/
var TestAdapterProxy = function() {
- settings.TestBrowserProxy.call(this, [
+ test.TestBrowserProxy.call(this, [
'getInfo',
'getDevices',
'setClient',
@@ -101,7 +101,7 @@ BluetoothInternalsTest.prototype = {
};
TestAdapterProxy.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: test.TestBrowserProxy.prototype,
connectToDevice: function(address) {
assert(this.deviceProxyMap.has(address), 'Device does not exist');
@@ -153,7 +153,7 @@ BluetoothInternalsTest.prototype = {
* @param {!device.DeviceInfo} info
*/
var TestDeviceProxy = function(info) {
- settings.TestBrowserProxy.call(this, [
+ test.TestBrowserProxy.call(this, [
'getInfo',
'getServices',
]);
@@ -164,7 +164,7 @@ BluetoothInternalsTest.prototype = {
}
TestDeviceProxy.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: test.TestBrowserProxy.prototype,
disconnect: function() {
this.binding.close();

Powered by Google App Engine
This is Rietveld 408576698