| Index: chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc b/chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc
|
| index 2023fd4df781dc162d24dda1e0fc6cfd1f70e700..79436cc89a06db4d30b13631f86634b15872daab 100644
|
| --- a/chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc
|
| @@ -23,7 +23,7 @@ class StubDelegate : public CaptivePortalWindowProxyDelegate {
|
| public:
|
| StubDelegate() {}
|
| virtual ~StubDelegate() {}
|
| - virtual void OnPortalDetected() OVERRIDE {}
|
| + virtual void OnPortalDetected() override {}
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(StubDelegate);
|
| @@ -41,7 +41,7 @@ class InterstitialPageDelegate : public content::InterstitialPageDelegate {
|
|
|
| private:
|
| // InterstitialPageDelegate implementation:
|
| - virtual std::string GetHTMLContents() OVERRIDE { return "HTML Contents"; }
|
| + virtual std::string GetHTMLContents() override { return "HTML Contents"; }
|
|
|
| DISALLOW_COPY_AND_ASSIGN(InterstitialPageDelegate);
|
| };
|
|
|