| Index: chrome/test/nacl/nacl_browsertest.cc
|
| diff --git a/chrome/test/nacl/nacl_browsertest.cc b/chrome/test/nacl/nacl_browsertest.cc
|
| index 53aa27302293041e3ef99c1add13d256a5693b67..de90c1295f18e6342e3b40c06677f97ca0158ce4 100644
|
| --- a/chrome/test/nacl/nacl_browsertest.cc
|
| +++ b/chrome/test/nacl/nacl_browsertest.cc
|
| @@ -214,7 +214,7 @@ IN_PROC_BROWSER_TEST_F(NaClBrowserTestStatic, RelativeManifest) {
|
| // Test with the NaCl debug flag turned on.
|
| class NaClBrowserTestPnaclDebug : public NaClBrowserTestPnacl {
|
| public:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + void SetUpCommandLine(CommandLine* command_line) override {
|
| NaClBrowserTestPnacl::SetUpCommandLine(command_line);
|
| // Turn on debugging to influence the PNaCl URL loaded
|
| command_line->AppendSwitch(switches::kEnableNaClDebug);
|
| @@ -278,7 +278,7 @@ class NaClBrowserTestPnaclDebug : public NaClBrowserTestPnacl {
|
| // so that nothing is actually debugged.
|
| class NaClBrowserTestPnaclDebugMasked : public NaClBrowserTestPnaclDebug {
|
| public:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + void SetUpCommandLine(CommandLine* command_line) override {
|
| NaClBrowserTestPnaclDebug::SetUpCommandLine(command_line);
|
| command_line->AppendSwitchASCII(switches::kNaClDebugMask,
|
| "!<all_urls>");
|
|
|