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

Unified Diff: chrome/test/data/webui/print_preview/native_layer_stub.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/print_preview/native_layer_stub.js
diff --git a/chrome/test/data/webui/print_preview/native_layer_stub.js b/chrome/test/data/webui/print_preview/native_layer_stub.js
index 92f9f29e15bce49e8e81b90e8cdf97e6e48b2133..33aca5f4d066b109394a207acd25e06d6401ba61 100644
--- a/chrome/test/data/webui/print_preview/native_layer_stub.js
+++ b/chrome/test/data/webui/print_preview/native_layer_stub.js
@@ -6,10 +6,10 @@ cr.define('print_preview', function() {
/**
* Test version of the native layer.
* @constructor
- * @extends {settings.TestBrowserProxy}
+ * @extends {TestBrowserProxy}
*/
function NativeLayerStub() {
- settings.TestBrowserProxy.call(this, [
+ TestBrowserProxy.call(this, [
'getInitialSettings', 'getPrinters', 'setupPrinter' ]);
/**
@@ -65,7 +65,7 @@ cr.define('print_preview', function() {
}
NativeLayerStub.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: TestBrowserProxy.prototype,
/** @override */
getInitialSettings: function() {

Powered by Google App Engine
This is Rietveld 408576698