diff options
Diffstat (limited to 'components/update_client/update_client.cc')
-rw-r--r-- | components/update_client/update_client.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/update_client/update_client.cc b/components/update_client/update_client.cc index ece7ced..86b3dfc 100644 --- a/components/update_client/update_client.cc +++ b/components/update_client/update_client.cc @@ -47,12 +47,16 @@ CrxUpdateItem::CrxUpdateItem() diff_extra_code1(0) { } +CrxUpdateItem::CrxUpdateItem(const CrxUpdateItem& other) = default; + CrxUpdateItem::~CrxUpdateItem() { } CrxComponent::CrxComponent() : allow_background_download(true) { } +CrxComponent::CrxComponent(const CrxComponent& other) = default; + CrxComponent::~CrxComponent() { } |