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

Unified Diff: chrome/browser/android/compositor/tab_content_manager.h

Issue 1099383002: Change ScopedPtrHashMap's 2nd template parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build after rebase Created 5 years, 8 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/compositor/tab_content_manager.h
diff --git a/chrome/browser/android/compositor/tab_content_manager.h b/chrome/browser/android/compositor/tab_content_manager.h
index 10e4910192e7275357b6b06d1ecfab27217a0454..df4f89749c118acb4679f88a55aebc372be62113 100644
--- a/chrome/browser/android/compositor/tab_content_manager.h
+++ b/chrome/browser/android/compositor/tab_content_manager.h
@@ -99,7 +99,8 @@ class TabContentManager : public ThumbnailCacheObserver {
class TabReadbackRequest;
typedef base::hash_map<int, scoped_refptr<cc::Layer>> LayerMap;
typedef base::hash_map<int, scoped_refptr<ThumbnailLayer>> ThumbnailLayerMap;
- typedef base::ScopedPtrHashMap<int, TabReadbackRequest> TabReadbackRequestMap;
+ typedef base::ScopedPtrHashMap<int, scoped_ptr<TabReadbackRequest>>
+ TabReadbackRequestMap;
void PutThumbnailIntoCache(int tab_id,
float thumbnail_scale,

Powered by Google App Engine
This is Rietveld 408576698