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

Side by Side Diff: chrome/browser/bitmap_fetcher/bitmap_fetcher_service.h

Issue 1763273002: base: Remove OwningMRUCache in favor of scoped_ptrs in MRUCache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + fix Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 #ifndef CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_SERVICE_H_ 4 #ifndef CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_SERVICE_H_
5 #define CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_SERVICE_H_ 5 #define CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_SERVICE_H_
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/containers/mru_cache.h" 8 #include "base/containers/mru_cache.h"
9 #include "base/containers/scoped_ptr_hash_map.h" 9 #include "base/containers/scoped_ptr_hash_map.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 // Currently active requests. 89 // Currently active requests.
90 ScopedVector<BitmapFetcherRequest> requests_; 90 ScopedVector<BitmapFetcherRequest> requests_;
91 91
92 // Cache of retrieved images. 92 // Cache of retrieved images.
93 struct CacheEntry { 93 struct CacheEntry {
94 CacheEntry(); 94 CacheEntry();
95 ~CacheEntry(); 95 ~CacheEntry();
96 96
97 scoped_ptr<const SkBitmap> bitmap; 97 scoped_ptr<const SkBitmap> bitmap;
98 }; 98 };
99 base::OwningMRUCache<GURL, CacheEntry*> cache_; 99 base::MRUCache<GURL, scoped_ptr<CacheEntry>> cache_;
100 100
101 // Current request ID to be used. 101 // Current request ID to be used.
102 int current_request_id_; 102 int current_request_id_;
103 103
104 // Browser context this service is active for. 104 // Browser context this service is active for.
105 content::BrowserContext* context_; 105 content::BrowserContext* context_;
106 106
107 DISALLOW_COPY_AND_ASSIGN(BitmapFetcherService); 107 DISALLOW_COPY_AND_ASSIGN(BitmapFetcherService);
108 }; 108 };
109 109
110 #endif // CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_SERVICE_H_ 110 #endif // CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698