diff options
author | meelapshah@chromium.org <meelapshah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-01 21:50:33 +0000 |
---|---|---|
committer | meelapshah@chromium.org <meelapshah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-01 21:50:33 +0000 |
commit | 379c2b1a13d25f8457e0d602cab20e42961825bd (patch) | |
tree | 268a4574a8f2a7cc6da3cea7dc11a7fc1877d735 /chrome/browser/history/history_backend.h | |
parent | a0ac629c9409d6b268f51fea12a4b284870e7095 (diff) | |
download | chromium_src-379c2b1a13d25f8457e0d602cab20e42961825bd.zip chromium_src-379c2b1a13d25f8457e0d602cab20e42961825bd.tar.gz chromium_src-379c2b1a13d25f8457e0d602cab20e42961825bd.tar.bz2 |
Moved typedef of RedirectList from HistoryService class to history namespace.
Review URL: http://codereview.chromium.org/151168
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19766 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history/history_backend.h')
-rw-r--r-- | chrome/browser/history/history_backend.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/history/history_backend.h b/chrome/browser/history/history_backend.h index 4870589..2898b7e 100644 --- a/chrome/browser/history/history_backend.h +++ b/chrome/browser/history/history_backend.h @@ -160,14 +160,14 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, // // Backend for QueryRedirectsFrom. bool GetMostRecentRedirectsFrom(const GURL& url, - HistoryService::RedirectList* redirects); + history::RedirectList* redirects); // Similar to above function except computes a chain of redirects to the // given URL. Stores the most recent list of redirects ending at |url| in the // given RedirectList. For example, if we have the redirect list A -> B -> C, // then calling this function with url=C would fill redirects with {B, A}. bool GetMostRecentRedirectsTo(const GURL& url, - HistoryService::RedirectList* redirects); + history::RedirectList* redirects); // Thumbnails ---------------------------------------------------------------- @@ -310,12 +310,12 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, // |cur_visit|. |cur_visit| is assumed to be valid. Assumes that // this HistoryBackend object has been Init()ed successfully. void GetRedirectsFromSpecificVisit( - VisitID cur_visit, HistoryService::RedirectList* redirects); + VisitID cur_visit, history::RedirectList* redirects); // Similar to the above function except returns a redirect list ending // at |cur_visit|. void GetRedirectsToSpecificVisit( - VisitID cur_visit, HistoryService::RedirectList* redirects); + VisitID cur_visit, history::RedirectList* redirects); // Thumbnail Helpers --------------------------------------------------------- @@ -471,7 +471,7 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, // // As with AddPage, the last item in the redirect chain will be the // destination of the redirect (i.e., the key into recent_redirects_); - typedef MRUCache<GURL, HistoryService::RedirectList> RedirectCache; + typedef MRUCache<GURL, history::RedirectList> RedirectCache; RedirectCache recent_redirects_; // Timestamp of the last page addition request. We use this to detect when |