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

Unified Diff: chrome/browser/ui/webui/components_ui.cc

Issue 2835803002: Refactor the UpdateEngine and its actions in the component updater. (Closed)
Patch Set: feedback up to #6 Created 3 years, 8 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/components_ui.h ('k') | components/update_client/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/components_ui.cc
diff --git a/chrome/browser/ui/webui/components_ui.cc b/chrome/browser/ui/webui/components_ui.cc
index d815653ffc42925125f9655647d4e06bad03325a..cc6fe4e601b7edc7a6a96f66d2307952506a581d 100644
--- a/chrome/browser/ui/webui/components_ui.cc
+++ b/chrome/browser/ui/webui/components_ui.cc
@@ -23,7 +23,7 @@
#include "chrome/grit/browser_resources.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/theme_resources.h"
-#include "components/component_updater/component_updater_service.h"
+#include "components/update_client/crx_update_item.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/browser/web_ui_message_handler.h"
@@ -215,33 +215,33 @@ base::string16 ComponentsUI::ComponentEventToString(Events event) {
}
base::string16 ComponentsUI::ServiceStatusToString(
- update_client::CrxUpdateItem::State state) {
+ update_client::ComponentState state) {
// TODO(sorin): handle kDownloaded. For now, just handle it as kUpdating.
switch (state) {
- case update_client::CrxUpdateItem::State::kNew:
+ case update_client::ComponentState::kNew:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_NEW);
- case update_client::CrxUpdateItem::State::kChecking:
+ case update_client::ComponentState::kChecking:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_CHECKING);
- case update_client::CrxUpdateItem::State::kCanUpdate:
+ case update_client::ComponentState::kCanUpdate:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_UPDATE);
- case update_client::CrxUpdateItem::State::kDownloadingDiff:
+ case update_client::ComponentState::kDownloadingDiff:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_DNL_DIFF);
- case update_client::CrxUpdateItem::State::kDownloading:
+ case update_client::ComponentState::kDownloading:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_DNL);
- case update_client::CrxUpdateItem::State::kUpdatingDiff:
+ case update_client::ComponentState::kUpdatingDiff:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_UPDT_DIFF);
- case update_client::CrxUpdateItem::State::kUpdating:
+ case update_client::ComponentState::kUpdating:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_UPDATING);
- case update_client::CrxUpdateItem::State::kDownloaded:
+ case update_client::ComponentState::kDownloaded:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_DOWNLOADED);
- case update_client::CrxUpdateItem::State::kUpdated:
+ case update_client::ComponentState::kUpdated:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_UPDATED);
- case update_client::CrxUpdateItem::State::kUpToDate:
+ case update_client::ComponentState::kUpToDate:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_UPTODATE);
- case update_client::CrxUpdateItem::State::kNoUpdate:
+ case update_client::ComponentState::kUpdateError:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_SVC_STATUS_NOUPDATE);
- case update_client::CrxUpdateItem::State::kUninstalled: // Fall through.
- case update_client::CrxUpdateItem::State::kLastStatus:
+ case update_client::ComponentState::kUninstalled: // Fall through.
+ case update_client::ComponentState::kLastStatus:
return l10n_util::GetStringUTF16(IDS_COMPONENTS_UNKNOWN);
}
return l10n_util::GetStringUTF16(IDS_COMPONENTS_UNKNOWN);
« no previous file with comments | « chrome/browser/ui/webui/components_ui.h ('k') | components/update_client/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698