| Index: chrome/browser/ui/webui/javascript2webui.js
|
| diff --git a/chrome/browser/ui/webui/javascript2webui.js b/chrome/browser/ui/webui/javascript2webui.js
|
| index b0fc9bdc3ca6f866ac6c0051f39062eea67da5db..6af8ad97ef9f0c801bb99c49b630ad94d867965e 100644
|
| --- a/chrome/browser/ui/webui/javascript2webui.js
|
| +++ b/chrome/browser/ui/webui/javascript2webui.js
|
| @@ -32,6 +32,7 @@ function TEST_F(testFixture, testFunction, testBody) {
|
| var testGenPreamble = this[testFixture].prototype.testGenPreamble;
|
| var testGenPostamble = this[testFixture].prototype.testGenPostamble;
|
| var typedefCppFixture = this[testFixture].prototype.typedefCppFixture;
|
| + var noPrint = this[testFixture].prototype.noPrint;
|
|
|
| if (typedefCppFixture && !(testFixture in typedeffedCppFixtures)) {
|
| print('typedef ' + typedefCppFixture + ' ' + testFixture + ';');
|
| @@ -49,7 +50,8 @@ function TEST_F(testFixture, testFunction, testBody) {
|
| if (browsePrintPreload) {
|
| print(' BrowsePrintPreload(GURL(WebUITestDataPathToURL(\n' +
|
| ' FILE_PATH_LITERAL("' + browsePrintPreload + '"))),\n' +
|
| - ' "' + testFixture + '", "' + testFunction + '");');
|
| + ' "' + testFixture + '", "' + testFunction + '",\n' +
|
| + ' ' + noPrint + ');');
|
| }
|
| print(' ASSERT_TRUE(RunJavascriptTestF("' + testFixture + '", "' +
|
| testFunction + '"));');
|
|
|