Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3079)

Unified Diff: chrome/browser/ui/webui/help/version_updater_basic.cc

Issue 2795603002: Add an update warning for downloading over mobile data (Closed)
Patch Set: Ignore this as I uploaded a new CL Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/help/version_updater_basic.cc
diff --git a/chrome/browser/ui/webui/help/version_updater_basic.cc b/chrome/browser/ui/webui/help/version_updater_basic.cc
index 2cd9126ee6231e95458ef89d643020b982dae746..8cb85a35079989350bedcec03f7815a8a2855abd 100644
--- a/chrome/browser/ui/webui/help/version_updater_basic.cc
+++ b/chrome/browser/ui/webui/help/version_updater_basic.cc
@@ -11,9 +11,9 @@ void VersionUpdaterBasic::CheckForUpdate(
const StatusCallback& status_callback,
const PromoteCallback&) {
if (UpgradeDetector::GetInstance()->notify_upgrade())
- status_callback.Run(NEARLY_UPDATED, 0, base::string16());
+ status_callback.Run(NEARLY_UPDATED, 0, std::string(), 0, base::string16());
else
- status_callback.Run(DISABLED, 0, base::string16());
+ status_callback.Run(DISABLED, 0, std::string(), 0, base::string16());
}
VersionUpdater* VersionUpdater::Create(content::WebContents* web_contents) {
« no previous file with comments | « chrome/browser/ui/webui/help/version_updater.h ('k') | chrome/browser/ui/webui/help/version_updater_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698