summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/active_install_data.cc
blob: ee6cdfe2d418af870085c668ae1ac18f055cb70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/extensions/active_install_data.h"

#include "chrome/browser/extensions/install_tracker.h"

namespace extensions {

// ActiveInstallData:

ActiveInstallData::ActiveInstallData()
    : percent_downloaded(0) {
}

ActiveInstallData::ActiveInstallData(const std::string& extension_id)
    : extension_id(extension_id), percent_downloaded(0) {
}

// ScopedActiveInstall:

ScopedActiveInstall::ScopedActiveInstall(InstallTracker* tracker,
                                         const ActiveInstallData& install_data)
    : tracker_(tracker),
      tracker_observer_(this),
      extension_id_(install_data.extension_id) {
  Init();
  tracker_->AddActiveInstall(install_data);
}

ScopedActiveInstall::ScopedActiveInstall(InstallTracker* tracker,
                                         const std::string& extension_id)
    : tracker_(tracker), tracker_observer_(this), extension_id_(extension_id) {
  Init();
}

ScopedActiveInstall::~ScopedActiveInstall() {
  if (tracker_)
    tracker_->RemoveActiveInstall(extension_id_);
}

void ScopedActiveInstall::CancelDeregister() {
  tracker_observer_.RemoveAll();
  tracker_ = NULL;
}

void ScopedActiveInstall::Init() {
  DCHECK(!extension_id_.empty());
  DCHECK(tracker_);
  tracker_observer_.Add(tracker_);
}

void ScopedActiveInstall::OnShutdown() {
  CancelDeregister();
}

}  // namespace extensions