| Index: athena/test/chrome/athena_browsertest.cc
|
| diff --git a/athena/test/chrome/athena_browsertest.cc b/athena/test/chrome/athena_browsertest.cc
|
| index 25ced8818de4386bf1624ff90f4c8f6bf676b470..c9e8965e7a872ce02b80fd879ce38990f5b5089b 100644
|
| --- a/athena/test/chrome/athena_browsertest.cc
|
| +++ b/athena/test/chrome/athena_browsertest.cc
|
| @@ -6,13 +6,10 @@
|
|
|
| #include "athena/test/chrome/test_util.h"
|
| #include "base/command_line.h"
|
| +#include "content/public/common/content_switches.h"
|
|
|
| namespace athena {
|
|
|
| -namespace {
|
| -const char kNoNaclSandbox[] = "--no-sandbox";
|
| -}
|
| -
|
| AthenaBrowserTest::AthenaBrowserTest() {
|
| }
|
|
|
| @@ -21,7 +18,7 @@ AthenaBrowserTest::~AthenaBrowserTest() {
|
|
|
| void AthenaBrowserTest::SetUpCommandLine(base::CommandLine* command_line) {
|
| // The NaCl sandbox won't work in our browser tests.
|
| - command_line->AppendSwitch(kNoNaclSandbox);
|
| + command_line->AppendSwitch(switches::kNoSandbox);
|
| InProcessBrowserTest::SetUpCommandLine(command_line);
|
| }
|
|
|
|
|