| Index: chrome/browser/resources/chromeos/chromevox/testing/chromevox_next_e2e_test_base.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/testing/chromevox_next_e2e_test_base.js b/chrome/browser/resources/chromeos/chromevox/testing/chromevox_next_e2e_test_base.js
|
| index e432a998de5f9d711f04ff24f136c4ef8509eeee..778a413f7bcfa85b69c363229dfcee95b2b72576 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/testing/chromevox_next_e2e_test_base.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/testing/chromevox_next_e2e_test_base.js
|
| @@ -27,6 +27,20 @@
|
| testGenCppIncludes: function() {
|
| ChromeVoxE2ETest.prototype.testGenCppIncludes.call(this);
|
| GEN('#include "base/command_line.h"');
|
| + GEN('#include "chromeos/chromeos_switches.h"');
|
| + },
|
| +
|
| + /**
|
| + * This method is called without |this| bound to an instance of
|
| + * ChromeVoxNextE2ETest.
|
| + * @override
|
| + */
|
| + testGenPreamble: function() {
|
| + GEN_BLOCK(function() {/*!
|
| + CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + command_line->AppendSwitch(chromeos::switches::kEnableChromeVoxNext);
|
| + */});
|
| + ChromeVoxE2ETest.prototype.testGenPreamble.call(this);
|
| },
|
|
|
| runWithAutomation: function(doc, callback) {
|
|
|