| 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() {
|
|
|