Index: chrome/browser/ui/views/about_chrome_view.cc |
diff --git a/chrome/browser/ui/views/about_chrome_view.cc b/chrome/browser/ui/views/about_chrome_view.cc |
index 3f3c9ed115f734fce037b10229d021a366cd1953..798a6ab678debcab5bc588010df5cc9831a19ef2 100644 |
--- a/chrome/browser/ui/views/about_chrome_view.cc |
+++ b/chrome/browser/ui/views/about_chrome_view.cc |
@@ -529,7 +529,7 @@ void AboutChromeView::ViewHierarchyChanged(bool is_add, |
!base::win::UserAccountControlIsEnabled())) { |
UpdateStatus(UPGRADE_CHECK_STARTED, GOOGLE_UPDATE_NO_ERROR, string16()); |
// CheckForUpdate(false, ...) means don't upgrade yet. |
- google_updater_->CheckForUpdate(false, GetWidget()); |
+ google_updater_->CheckForUpdate(false); |
} |
#endif |
} else { |
@@ -682,7 +682,7 @@ void AboutChromeView::UpdateStatus(GoogleUpdateUpgradeResult result, |
google_updater_->set_status_listener(this); |
UpdateStatus(UPGRADE_STARTED, GOOGLE_UPDATE_NO_ERROR, string16()); |
// CheckForUpdate(true,...) means perform upgrade if new version found. |
- google_updater_->CheckForUpdate(true, GetWidget()); |
+ google_updater_->CheckForUpdate(true); |
// TODO(seanparent): Need to see if this code needs to change to |
// force a machine restart. |
return; |