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

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

Issue 10897034: First part of PAGE_TRANSITION_START_PAGE cleanup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 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
Index: chrome/browser/history/history_extension_api.cc
diff --git a/chrome/browser/history/history_extension_api.cc b/chrome/browser/history/history_extension_api.cc
index 96d2e8a3123bec6dcfb61cce1792d35d535fcaeb..687c79ef547e17bf93b4fa2e7db8483063f5dda1 100644
--- a/chrome/browser/history/history_extension_api.cc
+++ b/chrome/browser/history/history_extension_api.cc
@@ -88,8 +88,8 @@ scoped_ptr<VisitItem> GetVisitItem(const history::VisitRow& row) {
case content::PAGE_TRANSITION_GENERATED:
transition = VisitItem::TRANSITION_GENERATED;
break;
- case content::PAGE_TRANSITION_START_PAGE:
- transition = VisitItem::TRANSITION_START_PAGE;
+ case content::PAGE_TRANSITION_AUTO_TOPLEVEL:
+ transition = VisitItem::TRANSITION_AUTO_TOPLEVEL;
break;
case content::PAGE_TRANSITION_FORM_SUBMIT:
transition = VisitItem::TRANSITION_FORM_SUBMIT;
« no previous file with comments | « chrome/browser/history/expire_history_backend.cc ('k') | chrome/browser/printing/print_preview_tab_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698