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

Unified Diff: chrome/browser/history/history_types.cc

Issue 562603002: Move PageTransition from //content/public/common to //ui/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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/history/history_types.h ('k') | chrome/browser/history/history_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/history_types.cc
diff --git a/chrome/browser/history/history_types.cc b/chrome/browser/history/history_types.cc
index 97145ecbad8eaf3056e23c79ea0256f8aa6eb69f..5e733cc2ce3b60a496d26fe00560854064e3a04b 100644
--- a/chrome/browser/history/history_types.cc
+++ b/chrome/browser/history/history_types.cc
@@ -17,14 +17,14 @@ VisitRow::VisitRow()
: visit_id(0),
url_id(0),
referring_visit(0),
- transition(content::PAGE_TRANSITION_LINK),
+ transition(ui::PAGE_TRANSITION_LINK),
segment_id(0) {
}
VisitRow::VisitRow(URLID arg_url_id,
base::Time arg_visit_time,
VisitID arg_referring_visit,
- content::PageTransition arg_transition,
+ ui::PageTransition arg_transition,
SegmentID arg_segment_id)
: visit_id(0),
url_id(arg_url_id),
@@ -50,7 +50,7 @@ QueryURLResult::~QueryURLResult() {
HistoryAddPageArgs::HistoryAddPageArgs()
: context_id(NULL),
page_id(0),
- transition(content::PAGE_TRANSITION_LINK),
+ transition(ui::PAGE_TRANSITION_LINK),
visit_source(SOURCE_BROWSED),
did_replace_entry(false) {}
@@ -61,7 +61,7 @@ HistoryAddPageArgs::HistoryAddPageArgs(
int32 page_id,
const GURL& referrer,
const history::RedirectList& redirects,
- content::PageTransition transition,
+ ui::PageTransition transition,
VisitSource source,
bool did_replace_entry)
: url(url),
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/history_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698