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

Unified Diff: chrome/browser/tab_contents/navigation_controller.cc

Issue 3359013: Revert 58809 - Implement the webNavigation.onCommitted event.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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/extensions/extensions_service.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/navigation_controller.cc
===================================================================
--- chrome/browser/tab_contents/navigation_controller.cc (revision 58815)
+++ chrome/browser/tab_contents/navigation_controller.cc (working copy)
@@ -352,9 +352,6 @@
DiscardNonCommittedEntries();
pending_entry_index_ = current_index - 1;
- entries_[pending_entry_index_]->set_transition_type(
- entries_[pending_entry_index_]->transition_type() |
- PageTransition::FORWARD_BACK);
NavigateToPendingEntry(NO_RELOAD);
}
@@ -385,9 +382,6 @@
if (!transient)
pending_entry_index_++;
- entries_[pending_entry_index_]->set_transition_type(
- entries_[pending_entry_index_]->transition_type() |
- PageTransition::FORWARD_BACK);
NavigateToPendingEntry(NO_RELOAD);
}
@@ -426,9 +420,6 @@
DiscardNonCommittedEntries();
pending_entry_index_ = index;
- entries_[pending_entry_index_]->set_transition_type(
- entries_[pending_entry_index_]->transition_type() |
- PageTransition::FORWARD_BACK);
NavigateToPendingEntry(NO_RELOAD);
}
« no previous file with comments | « chrome/browser/extensions/extensions_service.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698