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

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

Issue 9307111: Try to unbreak linux_chromeos_clang after r120497 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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
« no previous file with comments | « chrome/browser/ui/webui/help/version_updater_chromeos.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/help/version_updater_chromeos.cc
diff --git a/chrome/browser/ui/webui/help/version_updater_chromeos.cc b/chrome/browser/ui/webui/help/version_updater_chromeos.cc
index b03f32b373593cec93312b2c0b2038962d1c3193..fe5009dff683760e7af1d7fc45ec818b303e243e 100644
--- a/chrome/browser/ui/webui/help/version_updater_chromeos.cc
+++ b/chrome/browser/ui/webui/help/version_updater_chromeos.cc
@@ -18,10 +18,6 @@ VersionUpdater* VersionUpdater::Create() {
return static_cast<VersionUpdater*>(new VersionUpdaterCros);
}
-bool VersionUpdaterCros::CanBeUpdated() const {
- return true;
-}
-
void VersionUpdaterCros::CheckForUpdate(const StatusCallback& callback) {
callback_ = callback;
@@ -41,6 +37,8 @@ void VersionUpdaterCros::RelaunchBrowser() const {
DBusThreadManager::Get()->GetPowerManagerClient()->RequestRestart();
}
+VersionUpdaterCros::VersionUpdaterCros() {}
+
VersionUpdaterCros::~VersionUpdaterCros() {
UpdateEngineClient* update_engine_client =
DBusThreadManager::Get()->GetUpdateEngineClient();
@@ -48,7 +46,7 @@ VersionUpdaterCros::~VersionUpdaterCros() {
}
void VersionUpdaterCros::UpdateStatusChanged(
- const UpdateEngineClient::Status& status) OVERRIDE {
+ const UpdateEngineClient::Status& status) {
Status my_status = UPDATED;
int progress = 0;
« no previous file with comments | « chrome/browser/ui/webui/help/version_updater_chromeos.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698