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

Unified Diff: chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h

Issue 2218413002: Calls ShortcutHelper::FinalizeLauncherIcon() on worker thread instead of on IO thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/android/webapps/add_to_homescreen_data_fetcher.h
diff --git a/chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h b/chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h
index d02b94576e07aa3f981ee13c89db80f71d8d2554..ae3401bd3430859ff0612b8ad8d32d3362e4b743 100644
--- a/chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h
+++ b/chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h
@@ -44,9 +44,9 @@ class AddToHomescreenDataFetcher
// Converts the icon into one that can be used on the Android Home screen.
// |is_generated| is an out-param that indicates whether the icon was
// generated by Chrome.
- virtual SkBitmap FinalizeLauncherIcon(const SkBitmap& icon,
- const GURL& url,
- bool* is_generated) = 0;
+ virtual SkBitmap FinalizeLauncherIconInBackground(const SkBitmap& icon,
+ const GURL& url,
+ bool* is_generated) = 0;
// Called when all the data needed to create a shortcut is available.
virtual void OnDataAvailable(const ShortcutInfo& info,
@@ -92,7 +92,7 @@ class AddToHomescreenDataFetcher
const favicon_base::FaviconRawBitmapResult& bitmap_result);
// Creates the launcher icon from the given bitmap.
- void CreateLauncherIcon(
+ void CreateLauncherIconInBackground(
const favicon_base::FaviconRawBitmapResult& bitmap_result);
// Callback run after an attempt to download manifest icon has been made. May

Powered by Google App Engine
This is Rietveld 408576698