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

Unified Diff: chrome/browser/extensions/chrome_app_icon_service.cc

Issue 2819413003: Refactor extension app icon. (Closed)
Patch Set: nit Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/chrome_app_icon_service.cc
diff --git a/chrome/browser/extensions/chrome_app_icon_service.cc b/chrome/browser/extensions/chrome_app_icon_service.cc
new file mode 100644
index 0000000000000000000000000000000000000000..fcbe814e74ed9343d9414867bcdbf3242024ea12
--- /dev/null
+++ b/chrome/browser/extensions/chrome_app_icon_service.cc
@@ -0,0 +1,91 @@
+// Copyright 2017 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/chrome_app_icon_service.h"
+
+#include "base/bind.h"
+#include "base/memory/ptr_util.h"
+#include "chrome/browser/extensions/chrome_app_icon.h"
+#include "chrome/browser/extensions/chrome_app_icon_service_factory.h"
+#include "extensions/browser/extension_registry.h"
+
+namespace extensions {
+
+// static
+ChromeAppIconService* ChromeAppIconService::Get(
+ content::BrowserContext* context) {
+ return ChromeAppIconServiceFactory::GetInstance()->GetForBrowserContext(
+ context);
+}
+
+ChromeAppIconService::ChromeAppIconService(content::BrowserContext* context)
+ : context_(context), observer_(this), weak_ptr_factory_(this) {
+#if defined(OS_CHROMEOS)
+ app_updater_ = base::MakeUnique<LauncherExtensionAppUpdater>(this, context);
+#endif
+
+ observer_.Add(ExtensionRegistry::Get(context_));
+}
+
+ChromeAppIconService::~ChromeAppIconService() = default;
+
+void ChromeAppIconService::Shutdown() {
+#if defined(OS_CHROMEOS)
+ app_updater_.reset();
+#endif
+}
+
+std::unique_ptr<ChromeAppIcon> ChromeAppIconService::CreateIcon(
+ ChromeAppIconDelegate* delegate,
+ const std::string& app_id,
+ int resource_size_in_dip) {
+ std::unique_ptr<ChromeAppIcon> icon = base::MakeUnique<ChromeAppIcon>(
+ delegate, context_,
+ base::Bind(&ChromeAppIconService::OnIconDestroyed,
+ weak_ptr_factory_.GetWeakPtr()),
+ app_id, resource_size_in_dip);
+
+ icon_map_[icon->app_id()].insert(icon.get());
+ return icon;
+}
+
+void ChromeAppIconService::OnExtensionLoaded(
+ content::BrowserContext* browser_context,
+ const Extension* extension) {
+ OnAppUpdated(extension->id());
+}
+
+void ChromeAppIconService::OnExtensionUnloaded(
+ content::BrowserContext* browser_context,
+ const Extension* extension,
+ UnloadedExtensionReason reason) {
+ OnAppUpdated(extension->id());
+}
+
+#if defined(OS_CHROMEOS)
+void ChromeAppIconService::OnAppUpdated(
+ content::BrowserContext* browser_context,
+ const std::string& app_id) {
+ OnAppUpdated(app_id);
+}
+#endif
+
+void ChromeAppIconService::OnAppUpdated(const std::string& app_id) {
+ IconMap::const_iterator it = icon_map_.find(app_id);
+ if (it == icon_map_.end())
+ return;
+ for (auto* icon : it->second)
+ icon->UpdateIcon();
+}
+
+void ChromeAppIconService::OnIconDestroyed(ChromeAppIcon* icon) {
+ DCHECK(icon);
+ IconMap::iterator it = icon_map_.find(icon->app_id());
+ DCHECK(it != icon_map_.end());
+ it->second.erase(icon);
+ if (it->second.empty())
+ icon_map_.erase(it);
+}
+
+} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/chrome_app_icon_service.h ('k') | chrome/browser/extensions/chrome_app_icon_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698