| Index: chrome/browser/thumbnail_store.cc
|
| ===================================================================
|
| --- chrome/browser/thumbnail_store.cc (revision 19748)
|
| +++ chrome/browser/thumbnail_store.cc (working copy)
|
| @@ -209,7 +209,7 @@
|
|
|
| // Return the first available thumbnail starting at the end of the
|
| // redirect list.
|
| - HistoryService::RedirectList::reverse_iterator rit;
|
| + history::RedirectList::reverse_iterator rit;
|
| for (rit = it->second->data.rbegin();
|
| rit != it->second->data.rend(); ++rit) {
|
| if (cache_->find(*rit) != cache_->end()) {
|
| @@ -245,7 +245,7 @@
|
| HistoryService::Handle request_handle,
|
| GURL url,
|
| bool success,
|
| - HistoryService::RedirectList* redirects) {
|
| + history::RedirectList* redirects) {
|
| if (!success)
|
| return;
|
|
|
|
|