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

Unified Diff: chrome/browser/history/android/sqlite_cursor.h

Issue 10870022: Change FaviconData to be able to return data for multiple bitmaps for same icon URL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/history/android/sqlite_cursor.h
diff --git a/chrome/browser/history/android/sqlite_cursor.h b/chrome/browser/history/android/sqlite_cursor.h
index de96e1a3e91f136ca02221bbb6700f9dd54c7098..f144397cac89a774df6024f0a004e1a78598a35a 100644
--- a/chrome/browser/history/android/sqlite_cursor.h
+++ b/chrome/browser/history/android/sqlite_cursor.h
@@ -147,11 +147,11 @@ class SQLiteCursor {
void GetFaviconForIDInUIThread(
history::FaviconID id,
CancelableRequestConsumerBase* consumer,
- const FaviconService::FaviconDataCallback& callback);
+ const FaviconService::FaviconRawCallback& callback);
// The Callback function of GetFavicon().
void OnFaviconData(FaviconService::Handle handle,
- history::FaviconData favicon);
+ const history::FaviconBitmapResult& bitmap_result);
// The callback function of MoveTo().
void OnMoved(AndroidHistoryProviderService::Handle handle,
@@ -186,7 +186,7 @@ class SQLiteCursor {
int count_;
// The favicon image.
- history::FaviconData favicon_;
+ history::FaviconBitmapResult favicon_bitmap_result_;
TestObserver* test_observer_;

Powered by Google App Engine
This is Rietveld 408576698