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

Unified Diff: chrome/browser/history/history.h

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/bookmarks/bookmark_model_unittest.cc ('k') | chrome/browser/history/history.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/history.h
===================================================================
--- chrome/browser/history/history.h (revision 19748)
+++ chrome/browser/history/history.h (working copy)
@@ -86,7 +86,6 @@
public base::RefCountedThreadSafe<HistoryService> {
public:
// Miscellaneous commonly-used types.
- typedef std::vector<GURL> RedirectList;
typedef std::vector<PageUsageData*> PageUsageDataList;
// ID (both star_id and group_id) of the bookmark bar.
@@ -165,7 +164,7 @@
int32 page_id,
const GURL& referrer,
PageTransition::Type transition,
- const RedirectList& redirects,
+ const history::RedirectList& redirects,
bool did_replace_entry);
// For adding pages to history with a specific time. This is for testing
@@ -176,13 +175,13 @@
int32 page_id,
const GURL& referrer,
PageTransition::Type transition,
- const RedirectList& redirects,
+ const history::RedirectList& redirects,
bool did_replace_entry);
// For adding pages to history where no tracking information can be done.
void AddPage(const GURL& url) {
AddPage(url, NULL, 0, GURL::EmptyGURL(), PageTransition::LINK,
- RedirectList(), false);
+ history::RedirectList(), false);
}
// Sets the title for the given page. The page should be in history. If it
@@ -276,7 +275,7 @@
typedef Callback4<Handle,
GURL, // from_url
bool, // success
- RedirectList*>::Type
+ history::RedirectList*>::Type
QueryRedirectsCallback;
// Schedules a query for the most recent redirect coming out of the given
« no previous file with comments | « chrome/browser/bookmarks/bookmark_model_unittest.cc ('k') | chrome/browser/history/history.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698