| Index: athena/test/chrome/athena_browsertest.cc
|
| diff --git a/athena/test/chrome/athena_browsertest.cc b/athena/test/chrome/athena_browsertest.cc
|
| index 72841b2b59f9d6373ca3bde666483932c51d6617..25ced8818de4386bf1624ff90f4c8f6bf676b470 100644
|
| --- a/athena/test/chrome/athena_browsertest.cc
|
| +++ b/athena/test/chrome/athena_browsertest.cc
|
| @@ -5,15 +5,26 @@
|
| #include "athena/test/chrome/athena_browsertest.h"
|
|
|
| #include "athena/test/chrome/test_util.h"
|
| +#include "base/command_line.h"
|
|
|
| namespace athena {
|
|
|
| +namespace {
|
| +const char kNoNaclSandbox[] = "--no-sandbox";
|
| +}
|
| +
|
| AthenaBrowserTest::AthenaBrowserTest() {
|
| }
|
|
|
| AthenaBrowserTest::~AthenaBrowserTest() {
|
| }
|
|
|
| +void AthenaBrowserTest::SetUpCommandLine(base::CommandLine* command_line) {
|
| + // The NaCl sandbox won't work in our browser tests.
|
| + command_line->AppendSwitch(kNoNaclSandbox);
|
| + InProcessBrowserTest::SetUpCommandLine(command_line);
|
| +}
|
| +
|
| void AthenaBrowserTest::SetUpOnMainThread() {
|
| // Set the memory pressure to low and turning off undeterministic resource
|
| // observer events.
|
|
|