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

Unified Diff: components/history/core/browser/history_types.h

Issue 896093004: Cleanup usage of history namespace in components/history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
Index: components/history/core/browser/history_types.h
diff --git a/components/history/core/browser/history_types.h b/components/history/core/browser/history_types.h
index 45ebdd50dd436da340725671e65318bf9a907cf8..cbcf26b75b7d453fe321606dd41e6a7b5999d0ad 100644
--- a/components/history/core/browser/history_types.h
+++ b/components/history/core/browser/history_types.h
@@ -25,12 +25,11 @@
#include "ui/gfx/geometry/size.h"
#include "url/gurl.h"
-class PageUsageData;
-
namespace history {
// Forward declaration for friend statements.
class HistoryBackend;
+class PageUsageData;
class URLDatabase;
// Container for a list of URLs.
@@ -363,7 +362,7 @@ struct HistoryAddPageArgs {
//
// HistoryAddPageArgs(
// GURL(), base::Time(), NULL, 0, GURL(),
- // history::RedirectList(), ui::PAGE_TRANSITION_LINK,
+ // RedirectList(), ui::PAGE_TRANSITION_LINK,
// SOURCE_BROWSED, false)
HistoryAddPageArgs();
HistoryAddPageArgs(const GURL& url,
@@ -371,7 +370,7 @@ struct HistoryAddPageArgs {
ContextID context_id,
int nav_entry_id,
const GURL& referrer,
- const history::RedirectList& redirects,
+ const RedirectList& redirects,
ui::PageTransition transition,
VisitSource source,
bool did_replace_entry);
@@ -382,7 +381,7 @@ struct HistoryAddPageArgs {
ContextID context_id;
int nav_entry_id;
GURL referrer;
- history::RedirectList redirects;
+ RedirectList redirects;
ui::PageTransition transition;
VisitSource visit_source;
bool did_replace_entry;
« no previous file with comments | « chrome/browser/ui/webui/ntp/suggestions_page_handler.h ('k') | components/history/core/browser/history_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698