| Index: content/browser/net_info_browsertest.cc
|
| diff --git a/content/browser/net_info_browsertest.cc b/content/browser/net_info_browsertest.cc
|
| index 605ae818f20f74484a4ab0bd60a40a6ef13f579a..23a2968d84d24e28609e46b6d0e0085b93d91a0c 100644
|
| --- a/content/browser/net_info_browsertest.cc
|
| +++ b/content/browser/net_info_browsertest.cc
|
| @@ -14,14 +14,14 @@
|
|
|
| class NetInfoBrowserTest : public content::ContentBrowserTest {
|
| protected:
|
| - virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| // TODO(jkarlin): Once NetInfo is enabled on all platforms remove this
|
| // switch.
|
| command_line->AppendSwitch(switches::kEnableNetworkInformation);
|
| }
|
|
|
| #if defined(OS_CHROMEOS)
|
| - virtual void SetUp() OVERRIDE {
|
| + virtual void SetUp() override {
|
| // ChromeOS's NetworkChangeNotifier isn't known to content and therefore
|
| // doesn't get created in content_browsertests. Insert a mock
|
| // NetworkChangeNotifier.
|
| @@ -30,7 +30,7 @@ class NetInfoBrowserTest : public content::ContentBrowserTest {
|
| }
|
| #endif
|
|
|
| - virtual void SetUpOnMainThread() OVERRIDE {
|
| + virtual void SetUpOnMainThread() override {
|
| net::NetworkChangeNotifier::SetTestNotificationsOnly(true);
|
| base::RunLoop().RunUntilIdle();
|
| }
|
|
|