| Index: content/shell/browser/shell_login_dialog.h
|
| diff --git a/content/shell/browser/shell_login_dialog.h b/content/shell/browser/shell_login_dialog.h
|
| index 84b0493819fb3cd2c686581e333d1f1d85ce4715..0004a41888638a3466791c059906fa81e2b9adc5 100644
|
| --- a/content/shell/browser/shell_login_dialog.h
|
| +++ b/content/shell/browser/shell_login_dialog.h
|
| @@ -33,7 +33,7 @@ class ShellLoginDialog : public ResourceDispatcherHostLoginDelegate {
|
|
|
| // ResourceDispatcherHostLoginDelegate implementation:
|
| // Threading: IO thread.
|
| - virtual void OnRequestCancelled() override;
|
| + void OnRequestCancelled() override;
|
|
|
| // Called by the platform specific code when the user responds. Public because
|
| // the aforementioned platform specific code may not have access to private
|
| @@ -45,7 +45,7 @@ class ShellLoginDialog : public ResourceDispatcherHostLoginDelegate {
|
|
|
| protected:
|
| // Threading: any
|
| - virtual ~ShellLoginDialog();
|
| + ~ShellLoginDialog() override;
|
|
|
| private:
|
| // All the methods that begin with Platform need to be implemented by the
|
|
|