Index: chrome/browser/ui/webui/ntp/thumbnail_source.h |
diff --git a/chrome/browser/ui/webui/ntp/thumbnail_source.h b/chrome/browser/ui/webui/ntp/thumbnail_source.h |
index cbd82fa7358208953f02e65a14bd427ad047bff3..1a53868b35b7190e8ca2c3176625f4d5b0b6063d 100644 |
--- a/chrome/browser/ui/webui/ntp/thumbnail_source.h |
+++ b/chrome/browser/ui/webui/ntp/thumbnail_source.h |
@@ -5,6 +5,7 @@ |
#ifndef CHROME_BROWSER_UI_WEBUI_NTP_THUMBNAIL_SOURCE_H_ |
#define CHROME_BROWSER_UI_WEBUI_NTP_THUMBNAIL_SOURCE_H_ |
+#include <map> |
#include <string> |
#include "base/basictypes.h" |
@@ -49,9 +50,13 @@ class ThumbnailSource : public content::URLDataSource { |
// ThumbnailService. |
scoped_refptr<thumbnails::ThumbnailService> thumbnail_service_; |
- // Transient copy of the request in play. Valid between |
- // ShouldServiceRequest() and StartDataRequest(). |
- mutable const net::URLRequest* current_request_; |
+ // Transient mappings from a ID-based path to a URL-based path. |
Dan Beam
2013/03/20 19:26:13
an ID-based, an URL-based
dhollowa
2013/03/20 19:58:54
Done.
|
+ // The key is an ID-string, the value is a URL string. |
+ // Mapppings are added in ShouldServiceRequest() and erased once |
Dan Beam
2013/03/20 19:26:13
Mappings
dhollowa
2013/03/20 19:58:54
Done.
|
+ // the request is serviced in StartDataRequest(). |
+ // TODO(dhollowa): Consider passing the |request| object through |
+ // to the |StartDataRequest| call. |
Dan Beam
2013/03/20 19:26:13
nit: |StartDataRequest()|
dhollowa
2013/03/20 19:58:54
Done.
|
+ mutable std::map<std::string, std::string> id_to_url_map_; |
Dan Beam
2013/03/20 19:26:13
why does this need to be mutable vs. just making t
dhollowa
2013/03/20 19:58:54
Because it is altered in the StartDataRequest() ca
dhollowa
2013/03/20 20:02:08
I realized I didn't really answer your question he
|
// Only used when servicing requests on the UI thread. |
Profile* const profile_; |