| Index: chrome/test/nacl/nacl_browsertest.cc
|
| diff --git a/chrome/test/nacl/nacl_browsertest.cc b/chrome/test/nacl/nacl_browsertest.cc
|
| index db9ccfe7b51a8a0ac81e9fee21af6eb9d46d8fb1..53aa27302293041e3ef99c1add13d256a5693b67 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 {
|
| + virtual 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 {
|
| + virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| NaClBrowserTestPnaclDebug::SetUpCommandLine(command_line);
|
| command_line->AppendSwitchASCII(switches::kNaClDebugMask,
|
| "!<all_urls>");
|
|
|