| Index: chrome/installer/util/html_dialog_impl.cc
|
| diff --git a/chrome/installer/util/html_dialog_impl.cc b/chrome/installer/util/html_dialog_impl.cc
|
| index 2df4447e229d099b496743c1905d83631aebf583..679aa74fee98a0add05dda86bee1bc94edac702f 100644
|
| --- a/chrome/installer/util/html_dialog_impl.cc
|
| +++ b/chrome/installer/util/html_dialog_impl.cc
|
| @@ -46,17 +46,15 @@ class HTMLDialogWin : public HTMLDialog {
|
| mshtml_ = LoadLibrary(L"MSHTML.DLL");
|
| }
|
|
|
| - virtual DialogResult ShowModal(void* parent_window,
|
| - CustomizationCallback* callback) {
|
| + DialogResult ShowModal(void* parent_window,
|
| + CustomizationCallback* callback) override {
|
| int result = HTML_DLG_DECLINE;
|
| if (!InternalDoDialog(callback, &result))
|
| return HTML_DLG_ERROR;
|
| return static_cast<DialogResult>(result);
|
| }
|
|
|
| - virtual std::wstring GetExtraResult() {
|
| - return extra_result_;
|
| - }
|
| + std::wstring GetExtraResult() override { return extra_result_; }
|
|
|
| private:
|
| bool InternalDoDialog(CustomizationCallback* callback, int* result);
|
|
|