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

Unified Diff: components/update_client/update_client.cc

Issue 879993005: Add support for uninstalling components and use it in SupervisedUserWhitelistInstaller. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: fix Created 5 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
Index: components/update_client/update_client.cc
diff --git a/components/update_client/update_client.cc b/components/update_client/update_client.cc
index b7fff2b5384b8395b16d3efe699935dcb3f2b6fd..35cc5bbbecd61ee1226bb2a5e9898d65a2ac01fa 100644
--- a/components/update_client/update_client.cc
+++ b/components/update_client/update_client.cc
@@ -10,6 +10,7 @@ namespace update_client {
CrxUpdateItem::CrxUpdateItem()
: status(kNew),
+ unregistered(false),
on_demand(false),
diff_update_failed(false),
error_category(0),
@@ -23,8 +24,7 @@ CrxUpdateItem::CrxUpdateItem()
CrxUpdateItem::~CrxUpdateItem() {
}
-CrxComponent::CrxComponent()
- : installer(NULL), allow_background_download(true) {
+CrxComponent::CrxComponent() : allow_background_download(true) {
}
CrxComponent::~CrxComponent() {

Powered by Google App Engine
This is Rietveld 408576698