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

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

Issue 147145: Fix: Certain redirections remove sites from the history... (Closed) Base URL: svn://chrome-svn.corp.google.com/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
Index: chrome/browser/history/history_marshaling.h
===================================================================
--- chrome/browser/history/history_marshaling.h (revision 19705)
+++ chrome/browser/history/history_marshaling.h (working copy)
@@ -26,14 +26,16 @@
int32 arg_page_id,
const GURL& arg_referrer,
const HistoryService::RedirectList& arg_redirects,
- PageTransition::Type arg_transition)
+ PageTransition::Type arg_transition,
+ bool arg_did_replace_entry)
: url(arg_url),
time(arg_time),
id_scope(arg_id_scope),
page_id(arg_page_id),
referrer(arg_referrer),
redirects(arg_redirects),
- transition(arg_transition) {
+ transition(arg_transition),
+ did_replace_entry(arg_did_replace_entry){
}
GURL url;
@@ -45,6 +47,7 @@
GURL referrer;
HistoryService::RedirectList redirects;
PageTransition::Type transition;
+ bool did_replace_entry;
private:
DISALLOW_EVIL_CONSTRUCTORS(HistoryAddPageArgs);
« no previous file with comments | « chrome/browser/history/history_backend_unittest.cc ('k') | chrome/browser/history/history_querying_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698