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

Unified Diff: components/arc/intent_helper/activity_icon_loader.cc

Issue 2655233007: Get rid of RefCounted for ActivityIconLoader. (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: components/arc/intent_helper/activity_icon_loader.cc
diff --git a/components/arc/intent_helper/activity_icon_loader.cc b/components/arc/intent_helper/activity_icon_loader.cc
index 715b6bd8db8fb25b16490d613c3390e06b122770..c7feacb7045cadf18f5293dd7fa8a90f31462cca 100644
--- a/components/arc/intent_helper/activity_icon_loader.cc
+++ b/components/arc/intent_helper/activity_icon_loader.cc
@@ -12,9 +12,11 @@
#include "base/base64.h"
#include "base/bind.h"
#include "base/memory/ptr_util.h"
+#include "base/memory/ref_counted.h"
#include "base/task_runner_util.h"
#include "components/arc/arc_bridge_service.h"
#include "components/arc/arc_service_manager.h"
+#include "components/arc/intent_helper/arc_intent_helper_bridge.h"
#include "ui/base/layout.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/image/image_skia_operations.h"
@@ -49,6 +51,60 @@ mojom::IntentHelperInstance* GetInstanceForRequestActivityIcons(
return instance;
}
+// static
Yusuke Sato 2017/01/27 18:21:17 remove
hidehiko 2017/01/30 17:04:03 Done.
+std::unique_ptr<ActivityIconLoader::ActivityToIconsMap> ResizeAndEncodeIcons(
+ std::vector<mojom::ActivityIconPtr> icons) {
+ auto result = base::MakeUnique<ActivityIconLoader::ActivityToIconsMap>();
+ for (size_t i = 0; i < icons.size(); ++i) {
+ static const size_t kBytesPerPixel = 4;
+ const mojom::ActivityIconPtr& icon = icons.at(i);
+ if (icon->width > kMaxIconSizeInPx || icon->height > kMaxIconSizeInPx ||
+ icon->width == 0 || icon->height == 0 ||
+ icon->icon.size() != (icon->width * icon->height * kBytesPerPixel)) {
+ continue;
+ }
+
+ SkBitmap bitmap;
+ bitmap.allocPixels(SkImageInfo::MakeN32Premul(icon->width, icon->height));
+ if (!bitmap.getPixels())
+ continue;
+ DCHECK_GE(bitmap.getSafeSize(), icon->icon.size());
+ memcpy(bitmap.getPixels(), &icon->icon.front(), icon->icon.size());
+
+ gfx::ImageSkia original(gfx::ImageSkia::CreateFrom1xBitmap(bitmap));
+
+ // Resize the original icon to the sizes intent_helper needs.
+ gfx::ImageSkia icon_large(gfx::ImageSkiaOperations::CreateResizedImage(
+ original, skia::ImageOperations::RESIZE_BEST,
+ gfx::Size(kLargeIconSizeInDip, kLargeIconSizeInDip)));
+ gfx::ImageSkia icon_small(gfx::ImageSkiaOperations::CreateResizedImage(
+ original, skia::ImageOperations::RESIZE_BEST,
+ gfx::Size(kSmallIconSizeInDip, kSmallIconSizeInDip)));
+ gfx::Image icon16(icon_small);
+ gfx::Image icon20(icon_large);
+
+ // Encode the icon as PNG data, and then as data: URL.
+ scoped_refptr<base::RefCountedMemory> img = icon16.As1xPNGBytes();
+ if (!img)
+ continue;
+ std::string encoded;
+ base::Base64Encode(base::StringPiece(img->front_as<char>(), img->size()),
+ &encoded);
+ scoped_refptr<base::RefCountedData<GURL>> dataurl(
+ new base::RefCountedData<GURL>(GURL(kPngDataUrlPrefix + encoded)));
+
+ const std::string activity_name = icon->activity->activity_name.has_value()
+ ? (*icon->activity->activity_name)
+ : std::string();
+ result->insert(
+ std::make_pair(ActivityIconLoader::ActivityName(
+ icon->activity->package_name, activity_name),
+ ActivityIconLoader::Icons(icon16, icon20, dataurl)));
+ }
+
+ return result;
+}
+
} // namespace
ActivityIconLoader::Icons::Icons(
@@ -72,9 +128,9 @@ bool ActivityIconLoader::ActivityName::operator<(
}
ActivityIconLoader::ActivityIconLoader()
- : scale_factor_(GetSupportedScaleFactor()) {}
+ : scale_factor_(GetSupportedScaleFactor()), weak_ptr_factory_(this) {}
-ActivityIconLoader::~ActivityIconLoader() {}
+ActivityIconLoader::~ActivityIconLoader() = default;
void ActivityIconLoader::InvalidateIcons(const std::string& package_name) {
DCHECK(thread_checker_.CalledOnValidThread());
@@ -129,8 +185,8 @@ ActivityIconLoader::GetResult ActivityIconLoader::GetActivityIcons(
// Fetch icons from ARC.
instance->RequestActivityIcons(
std::move(activities_to_fetch), mojom::ScaleFactor(scale_factor_),
- base::Bind(&ActivityIconLoader::OnIconsReady, this, base::Passed(&result),
- cb));
+ base::Bind(&ActivityIconLoader::OnIconsReady,
+ weak_ptr_factory_.GetWeakPtr(), base::Passed(&result), cb));
return GetResult::SUCCEEDED_ASYNC;
}
@@ -166,65 +222,10 @@ void ActivityIconLoader::OnIconsReady(
ArcServiceManager* manager = ArcServiceManager::Get();
base::PostTaskAndReplyWithResult(
manager->blocking_task_runner().get(), FROM_HERE,
- base::Bind(&ActivityIconLoader::ResizeAndEncodeIcons,
- base::Passed(&icons)),
- base::Bind(&ActivityIconLoader::OnIconsResized, this,
- base::Passed(&cached_result), cb));
-}
-
-// static
-std::unique_ptr<ActivityIconLoader::ActivityToIconsMap>
-ActivityIconLoader::ResizeAndEncodeIcons(
- std::vector<mojom::ActivityIconPtr> icons) {
- std::unique_ptr<ActivityToIconsMap> result(new ActivityToIconsMap);
-
- for (size_t i = 0; i < icons.size(); ++i) {
- static const size_t kBytesPerPixel = 4;
- const mojom::ActivityIconPtr& icon = icons.at(i);
- if (icon->width > kMaxIconSizeInPx || icon->height > kMaxIconSizeInPx ||
- icon->width == 0 || icon->height == 0 ||
- icon->icon.size() != (icon->width * icon->height * kBytesPerPixel)) {
- continue;
- }
-
- SkBitmap bitmap;
- bitmap.allocPixels(SkImageInfo::MakeN32Premul(icon->width, icon->height));
- if (!bitmap.getPixels())
- continue;
- DCHECK_GE(bitmap.getSafeSize(), icon->icon.size());
- memcpy(bitmap.getPixels(), &icon->icon.front(), icon->icon.size());
-
- gfx::ImageSkia original(gfx::ImageSkia::CreateFrom1xBitmap(bitmap));
-
- // Resize the original icon to the sizes intent_helper needs.
- gfx::ImageSkia icon_large(gfx::ImageSkiaOperations::CreateResizedImage(
- original, skia::ImageOperations::RESIZE_BEST,
- gfx::Size(kLargeIconSizeInDip, kLargeIconSizeInDip)));
- gfx::ImageSkia icon_small(gfx::ImageSkiaOperations::CreateResizedImage(
- original, skia::ImageOperations::RESIZE_BEST,
- gfx::Size(kSmallIconSizeInDip, kSmallIconSizeInDip)));
- gfx::Image icon16(icon_small);
- gfx::Image icon20(icon_large);
-
- // Encode the icon as PNG data, and then as data: URL.
- scoped_refptr<base::RefCountedMemory> img = icon16.As1xPNGBytes();
- if (!img)
- continue;
- std::string encoded;
- base::Base64Encode(base::StringPiece(img->front_as<char>(), img->size()),
- &encoded);
- scoped_refptr<base::RefCountedData<GURL>> dataurl(
- new base::RefCountedData<GURL>(GURL(kPngDataUrlPrefix + encoded)));
-
- const std::string activity_name = icon->activity->activity_name.has_value()
- ? (*icon->activity->activity_name)
- : std::string();
- result->insert(std::make_pair(
- ActivityName(icon->activity->package_name, activity_name),
- Icons(icon16, icon20, dataurl)));
- }
-
- return result;
+ base::Bind(&ResizeAndEncodeIcons, base::Passed(&icons)),
+ base::Bind(&ActivityIconLoader::OnIconsResized,
+ weak_ptr_factory_.GetWeakPtr(), base::Passed(&cached_result),
+ cb));
}
void ActivityIconLoader::OnIconsResized(

Powered by Google App Engine
This is Rietveld 408576698