Index: chrome/browser/extensions/active_install_data.cc |
diff --git a/chrome/browser/extensions/active_install_data.cc b/chrome/browser/extensions/active_install_data.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e22dd09879ae89b1520d5d3c46af3d63aa482dd9 |
--- /dev/null |
+++ b/chrome/browser/extensions/active_install_data.cc |
@@ -0,0 +1,54 @@ |
+// 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" |
+#include "chrome/browser/profiles/profile.h" |
+ |
+namespace extensions { |
+ |
+// ActiveInstallData: |
+ |
+ActiveInstallData::ActiveInstallData() |
+ : percent_downloaded(0), is_ephemeral(false) { |
+} |
+ |
+ActiveInstallData::ActiveInstallData(const std::string& extension_id) |
+ : extension_id(extension_id), percent_downloaded(0), is_ephemeral(false) { |
+} |
+ |
+// ScopedActiveInstall: |
+ |
+ScopedActiveInstall::ScopedActiveInstall(Profile* profile, |
+ const ActiveInstallData& install_data) |
+ : profile_(profile), extension_id_(install_data.extension_id) { |
+ DCHECK(profile); |
+ DCHECK(!install_data.extension_id.empty()); |
+ |
+ InstallTracker* tracker = InstallTracker::Get(profile); |
+ DCHECK(tracker); |
+ tracker->AddActiveInstall(install_data); |
+} |
+ |
+ScopedActiveInstall::ScopedActiveInstall(Profile* profile, |
+ const std::string& extension_id) |
+ : profile_(profile), extension_id_(extension_id) { |
+ DCHECK(profile); |
+ DCHECK(!extension_id.empty()); |
+} |
+ |
+ScopedActiveInstall::~ScopedActiveInstall() { |
+ if (!extension_id_.empty()) { |
+ InstallTracker* tracker = InstallTracker::Get(profile_); |
asargent_no_longer_on_chrome
2014/07/17 06:24:51
I'm a little concerned about this class holding a
|
+ DCHECK(tracker); |
+ tracker->RemoveActiveInstall(extension_id_); |
+ } |
+} |
+ |
+void ScopedActiveInstall::CancelDeregister() { |
+ extension_id_.clear(); |
+} |
+ |
+} // namespace extensions |