| 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);
|
|
|