Replace usage of cloud_storage in archive_info_unittest.
[chromium-blink-merge.git] / components / update_client / update_client.cc
blob35cc5bbbecd61ee1226bb2a5e9898d65a2ac01fa
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/update_client/update_client.h"
7 #include "components/update_client/crx_update_item.h"
9 namespace update_client {
11 CrxUpdateItem::CrxUpdateItem()
12 : status(kNew),
13 unregistered(false),
14 on_demand(false),
15 diff_update_failed(false),
16 error_category(0),
17 error_code(0),
18 extra_code1(0),
19 diff_error_category(0),
20 diff_error_code(0),
21 diff_extra_code1(0) {
24 CrxUpdateItem::~CrxUpdateItem() {
27 CrxComponent::CrxComponent() : allow_background_download(true) {
30 CrxComponent::~CrxComponent() {
33 } // namespace update_client