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

Side by Side Diff: components/update_client/update_client.cc

Issue 808773005: Move most of the component updater artifacts to update_client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « components/update_client/update_client.h ('k') | components/update_client/update_response.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include "components/update_client/update_client.h"
6
7 #include "components/update_client/crx_update_item.h"
8
9 namespace update_client {
10
11 CrxUpdateItem::CrxUpdateItem()
12 : status(kNew),
13 on_demand(false),
14 diff_update_failed(false),
15 error_category(0),
16 error_code(0),
17 extra_code1(0),
18 diff_error_category(0),
19 diff_error_code(0),
20 diff_extra_code1(0) {
21 }
22
23 CrxUpdateItem::~CrxUpdateItem() {
24 }
25
26 CrxComponent::CrxComponent()
27 : installer(NULL), allow_background_download(true) {
28 }
29
30 CrxComponent::~CrxComponent() {
31 }
32
33 } // namespace update_client
OLDNEW
« no previous file with comments | « components/update_client/update_client.h ('k') | components/update_client/update_response.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698