| Index: content/browser/web_contents/navigation_controller_impl.h
|
| diff --git a/content/browser/web_contents/navigation_controller_impl.h b/content/browser/web_contents/navigation_controller_impl.h
|
| index bef3be2202f16765ea2894f143bf2d76c2f0427c..2f0d71ea966fe280b53c424d0452a8ac501cb5a7 100644
|
| --- a/content/browser/web_contents/navigation_controller_impl.h
|
| +++ b/content/browser/web_contents/navigation_controller_impl.h
|
| @@ -289,10 +289,13 @@ class CONTENT_EXPORT NavigationControllerImpl
|
| // Removes the entry at |index|, as long as it is not the current entry.
|
| void RemoveEntryAtIndexInternal(int index);
|
|
|
| - // Discards the pending and transient entries.
|
| + // Discards both the pending and transient entries.
|
| void DiscardNonCommittedEntriesInternal();
|
|
|
| - // Discards the transient entry.
|
| + // Discards only the pending entry.
|
| + void DiscardPendingEntry();
|
| +
|
| + // Discards only the transient entry.
|
| void DiscardTransientEntry();
|
|
|
| // If we have the maximum number of entries, remove the oldest one in
|
|
|