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

Unified Diff: chrome/browser/thumbnail_store.cc

Issue 151168: Moved typedef of RedirectList from HistoryService class to history namespace.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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
« no previous file with comments | « chrome/browser/thumbnail_store.h ('k') | chrome/tools/profiles/generate_profile.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chrome/browser/thumbnail_store.h ('k') | chrome/tools/profiles/generate_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698