| Index: chrome/browser/ui/webui/help/version_updater_win.cc
|
| diff --git a/chrome/browser/ui/webui/help/version_updater_win.cc b/chrome/browser/ui/webui/help/version_updater_win.cc
|
| index 9825fe02ff594e9ff129e41332640258b8937fea..4311801f55c31473ff5b3f1a66e2446e36601593 100644
|
| --- a/chrome/browser/ui/webui/help/version_updater_win.cc
|
| +++ b/chrome/browser/ui/webui/help/version_updater_win.cc
|
| @@ -36,11 +36,11 @@ class VersionUpdaterWin : public VersionUpdater {
|
|
|
| // Clients must use VersionUpdater::Create().
|
| VersionUpdaterWin();
|
| - virtual ~VersionUpdaterWin();
|
| + ~VersionUpdaterWin() override;
|
|
|
| // VersionUpdater implementation.
|
| - virtual void CheckForUpdate(const StatusCallback& callback) override;
|
| - virtual void RelaunchBrowser() const override;
|
| + void CheckForUpdate(const StatusCallback& callback) override;
|
| + void RelaunchBrowser() const override;
|
|
|
| // chrome::UpdateCheckCallback.
|
| void OnUpdateCheckResults(GoogleUpdateUpgradeResult result,
|
| @@ -62,12 +62,12 @@ class VersionUpdaterWin : public VersionUpdater {
|
|
|
| void BeginUpdateCheckOnFileThread(bool install_if_newer);
|
|
|
| - // Used for callbacks.
|
| - base::WeakPtrFactory<VersionUpdaterWin> weak_factory_;
|
| -
|
| // Callback used to communicate update status to the client.
|
| StatusCallback callback_;
|
|
|
| + // Used for callbacks.
|
| + base::WeakPtrFactory<VersionUpdaterWin> weak_factory_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(VersionUpdaterWin);
|
| };
|
|
|
|
|