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

Unified Diff: chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js

Issue 2927653002: WebUI: Move test_browser_proxy.js one level up. (Closed)
Patch Set: Remove namespace 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/settings/fingerprint_browsertest_chromeos.js
diff --git a/chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js b/chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js
index 8a42a3a90906574c00e501021946027a65aabfdb..0c3dee93f25a60b1c45ad954419f49553e87d7b2 100644
--- a/chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js
+++ b/chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js
@@ -5,10 +5,10 @@
/**
* @constructor
* @implements {settings.FingerprintBrowserProxy}
- * @extends {settings.TestBrowserProxy}
+ * @extends {TestBrowserProxy}
*/
var TestFingerprintBrowserProxy = function() {
- settings.TestBrowserProxy.call(this, [
+ TestBrowserProxy.call(this, [
'getFingerprintsList',
'getNumFingerprints',
'startEnroll',
@@ -25,7 +25,7 @@ var TestFingerprintBrowserProxy = function() {
};
TestFingerprintBrowserProxy.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: TestBrowserProxy.prototype,
/** @ param {!Array<string>} fingerprints */
setFingerprints: function(fingerprints) {

Powered by Google App Engine
This is Rietveld 408576698